@charset "UTF-8";
/*! Flickity v2.1.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: #333;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.CalendarDay {
  border: 1px solid #e4e7e7;
  padding: 0;
  box-sizing: border-box;
  color: #565a5c;
  cursor: pointer;
}

.CalendarDay__button {
  position: relative;
  height: 100%;
  width: 100%;
  text-align: center;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  box-sizing: border-box;
}
.CalendarDay__button:active {
  outline: 0;
}

.CalendarDay--highlighted-calendar {
  background: #ffe8bc;
  color: #565a5c;
  cursor: default;
}
.CalendarDay--highlighted-calendar:active {
  background: #007a87;
}

.CalendarDay--outside {
  border: 0;
  cursor: default;
}
.CalendarDay--outside:active {
  background: #fff;
}

.CalendarDay--hovered {
  background: #e4e7e7;
  border: 1px double #d4d9d9;
  color: inherit;
}

.CalendarDay--blocked-minimum-nights {
  color: #cacccd;
  background: #fff;
  border: 1px solid #e4e7e7;
  cursor: default;
}
.CalendarDay--blocked-minimum-nights:active {
  background: #fff;
}

.CalendarDay--selected-span {
  background: #66e2da;
  border: 1px double #33dacd;
  color: #fff;
}
.CalendarDay--selected-span.CalendarDay--hovered, .CalendarDay--selected-span:active {
  background: #33dacd;
  border: 1px double #00a699;
}
.CalendarDay--selected-span.CalendarDay--last-in-range {
  border-right: #00a699;
}

.CalendarDay--hovered-span,
.CalendarDay--after-hovered-start {
  background: #b2f1ec;
  border: 1px double #80e8e0;
  color: #007a87;
}
.CalendarDay--hovered-span:active,
.CalendarDay--after-hovered-start:active {
  background: #80e8e0;
}

.CalendarDay--selected-start,
.CalendarDay--selected-end,
.CalendarDay--selected {
  background: #00a699;
  border: 1px double #00a699;
  color: #fff;
}
.CalendarDay--selected-start:active,
.CalendarDay--selected-end:active,
.CalendarDay--selected:active {
  background: #00a699;
}

.CalendarDay--blocked-calendar {
  background: #cacccd;
  color: #82888a;
  cursor: default;
}
.CalendarDay--blocked-calendar:active {
  background: #cacccd;
}

.CalendarDay--blocked-out-of-range {
  color: #cacccd;
  background: #fff;
  border: 1px solid #e4e7e7;
  cursor: default;
}
.CalendarDay--blocked-out-of-range:active {
  background: #fff;
}

.CalendarMonth {
  text-align: center;
  padding: 0 13px;
  vertical-align: top;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.CalendarMonth table {
  border-collapse: collapse;
  border-spacing: 0;
  caption-caption-side: initial;
}

.CalendarMonth--horizontal:first-of-type,
.CalendarMonth--vertical:first-of-type {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

.CalendarMonth--horizontal {
  display: inline-block;
  min-height: 100%;
}

.CalendarMonth--vertical {
  display: block;
}

.CalendarMonth__caption {
  color: #3c3f40;
  margin-top: 7px;
  font-size: 18px;
  text-align: center;
  margin-bottom: 2px;
  caption-side: initial;
}

.CalendarMonth--horizontal .CalendarMonth__caption,
.CalendarMonth--vertical .CalendarMonth__caption {
  padding: 15px 0 35px;
}

.CalendarMonth--vertical-scrollable .CalendarMonth__caption {
  padding: 5px 0;
}

.CalendarMonthGrid {
  background: #fff;
  z-index: 0;
  text-align: left;
}

.CalendarMonthGrid--animating {
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  z-index: 1;
}

.CalendarMonthGrid--horizontal {
  position: absolute;
  left: 9px;
}

.CalendarMonthGrid--vertical {
  margin: 0 auto;
}

.CalendarMonthGrid--vertical-scrollable {
  margin: 0 auto;
  overflow-y: scroll;
}

.DayPicker {
  background: #fff;
  position: relative;
  text-align: left;
}

.DayPicker--horizontal {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
}
.DayPicker--horizontal.DayPicker--portal {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%;
}

.DayPicker--vertical.DayPicker--portal {
  position: initial;
}

.DayPicker__focus-region {
  outline: none;
}

.DayPicker__week-headers {
  position: relative;
}

.DayPicker--horizontal .DayPicker__week-headers {
  margin-left: 9px;
}

.DayPicker__week-header {
  color: #757575;
  position: absolute;
  top: 62px;
  z-index: 2;
  padding: 0 13px;
  text-align: left;
}
.DayPicker__week-header ul {
  list-style: none;
  margin: 1px 0;
  padding-left: 0;
  padding-right: 0;
}
.DayPicker__week-header li {
  display: inline-block;
  text-align: center;
}

.DayPicker--vertical .DayPicker__week-header {
  left: 50%;
}

.DayPicker--vertical-scrollable {
  height: 100%;
}
.DayPicker--vertical-scrollable .DayPicker__week-header {
  top: 0;
  display: table-row;
  border-bottom: 1px solid #dbdbdb;
  background: white;
}
.DayPicker--vertical-scrollable .transition-container--vertical {
  padding-top: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: scroll;
}
.DayPicker--vertical-scrollable .DayPicker__week-header {
  margin-left: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.transition-container {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.transition-container--horizontal {
  transition: height 0.2s ease-in-out;
}

.transition-container--vertical {
  width: 100%;
}

.DayPickerNavigation__prev,
.DayPickerNavigation__next {
  cursor: pointer;
  line-height: 0.78;
  -webkit-user-select: none; /* Chrome/Safari */ /* Firefox */
  -ms-user-select: none; /* IE10+ */
  user-select: none;
}

.DayPickerNavigation__prev--default,
.DayPickerNavigation__next--default {
  border: 1px solid #dce0e0;
  background-color: #fff;
  color: #757575;
}
.DayPickerNavigation__prev--default:focus, .DayPickerNavigation__prev--default:hover,
.DayPickerNavigation__next--default:focus,
.DayPickerNavigation__next--default:hover {
  border: 1px solid #c4c4c4;
}
.DayPickerNavigation__prev--default:active,
.DayPickerNavigation__next--default:active {
  background: #f2f2f2;
}

.DayPickerNavigation--horizontal {
  position: relative;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__prev,
.DayPickerNavigation--horizontal .DayPickerNavigation__next {
  border-radius: 3px;
  padding: 6px 9px;
  top: 18px;
  z-index: 2;
  position: absolute;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__prev {
  left: 22px;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__prev--rtl {
  left: auto;
  right: 22px;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__next {
  right: 22px;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__next--rtl {
  right: auto;
  left: 22px;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__prev--default svg,
.DayPickerNavigation--horizontal .DayPickerNavigation__next--default svg {
  height: 19px;
  width: 19px;
  fill: #82888a;
}

.DayPickerNavigation--vertical {
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 52px;
  width: 100%;
  z-index: 2;
}
.DayPickerNavigation--vertical .DayPickerNavigation__prev,
.DayPickerNavigation--vertical .DayPickerNavigation__next {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 50%;
}
.DayPickerNavigation--vertical .DayPickerNavigation__next--default {
  border-left: 0;
}
.DayPickerNavigation--vertical .DayPickerNavigation__prev--default,
.DayPickerNavigation--vertical .DayPickerNavigation__next--default {
  text-align: center;
  font-size: 2.5em;
  padding: 5px;
}
.DayPickerNavigation--vertical .DayPickerNavigation__prev--default svg,
.DayPickerNavigation--vertical .DayPickerNavigation__next--default svg {
  height: 42px;
  width: 42px;
  fill: #484848;
}

.DayPickerNavigation--vertical-scrollable {
  position: relative;
}
.DayPickerNavigation--vertical-scrollable .DayPickerNavigation__next {
  width: 100%;
}

.DayPickerKeyboardShortcuts__show,
.DayPickerKeyboardShortcuts__close {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
}
.DayPickerKeyboardShortcuts__show:active,
.DayPickerKeyboardShortcuts__close:active {
  outline: none;
}

.DayPickerKeyboardShortcuts__show {
  width: 22px;
  position: absolute;
  z-index: 2;
}

.DayPickerKeyboardShortcuts__show--bottom-right {
  border-top: 26px solid transparent;
  border-right: 33px solid #00a699;
  bottom: 0;
  right: 0;
}
.DayPickerKeyboardShortcuts__show--bottom-right:hover {
  border-right: 33px solid #008489;
}
.DayPickerKeyboardShortcuts__show--bottom-right .DayPickerKeyboardShortcuts__show_span {
  bottom: 0;
  right: -28px;
}

.DayPickerKeyboardShortcuts__show--top-right {
  border-bottom: 26px solid transparent;
  border-right: 33px solid #00a699;
  top: 0;
  right: 0;
}
.DayPickerKeyboardShortcuts__show--top-right:hover {
  border-right: 33px solid #008489;
}
.DayPickerKeyboardShortcuts__show--top-right .DayPickerKeyboardShortcuts__show_span {
  top: 1px;
  right: -28px;
}

.DayPickerKeyboardShortcuts__show--top-left {
  border-bottom: 26px solid transparent;
  border-left: 33px solid #00a699;
  top: 0;
  left: 0;
}
.DayPickerKeyboardShortcuts__show--top-left:hover {
  border-left: 33px solid #008489;
}
.DayPickerKeyboardShortcuts__show--top-left .DayPickerKeyboardShortcuts__show_span {
  top: 1px;
  left: -28px;
}

.DayPickerKeyboardShortcuts__show_span {
  color: #fff;
  position: absolute;
}

.DayPickerKeyboardShortcuts__panel {
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  margin: 33px;
}

.DayPickerKeyboardShortcuts__title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.DayPickerKeyboardShortcuts__list {
  list-style: none;
  padding: 0;
}

.DayPickerKeyboardShortcuts__close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
}
.DayPickerKeyboardShortcuts__close svg {
  height: 15px;
  width: 15px;
  fill: #cacccd;
}
.DayPickerKeyboardShortcuts__close svg:hover, .DayPickerKeyboardShortcuts__close svg:focus {
  fill: #82888a;
}
.DayPickerKeyboardShortcuts__close:active {
  outline: none;
}

.KeyboardShortcutRow {
  margin: 6px 0;
}

.KeyboardShortcutRow__key-container {
  display: inline-block;
  white-space: nowrap;
  text-align: right;
  margin-right: 6px;
}

.KeyboardShortcutRow__key {
  font-family: monospace;
  font-size: 12px;
  text-transform: uppercase;
  background: #f2f2f2;
  padding: 2px 6px;
}

.KeyboardShortcutRow__action {
  display: inline;
  word-break: break-word;
  margin-left: 8px;
}

.DayPickerKeyboardShortcuts__panel--block .KeyboardShortcutRow {
  margin-bottom: 16px;
}
.DayPickerKeyboardShortcuts__panel--block .KeyboardShortcutRow__key-container {
  width: auto;
  text-align: left;
  display: inline;
}
.DayPickerKeyboardShortcuts__panel--block .KeyboardShortcutRow__action {
  display: inline;
}

.DateInput {
  font-weight: 200;
  font-size: 18px;
  line-height: 24px;
  color: #757575;
  margin: 0;
  padding: 8px;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle;
}

.DateInput--with-caret::before,
.DateInput--with-caret::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: auto;
  border: 10px solid transparent;
  border-top: 0;
  left: 22px;
  z-index: 2;
}

.DateInput--with-caret::before {
  top: 62px;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.DateInput--with-caret::after {
  top: 63px;
  border-bottom-color: #fff;
}

.DateInput--disabled {
  background: #cacccd;
}

.DateInput__input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  height: 100%;
  width: 100%;
}
.DateInput__input[readonly] {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.DateInput__display-text {
  padding: 4px 8px;
  white-space: nowrap;
  overflow: hidden;
}

.DateInput__display-text--has-input {
  color: #484848;
}

.DateInput__display-text--focused {
  background: #99ede6;
  border-color: #99ede6;
  border-radius: 3px;
  color: #007a87;
}

.DateInput__display-text--disabled {
  font-style: italic;
}

.screen-reader-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.DateRangePicker {
  position: relative;
  display: inline-block;
}

.DateRangePicker__picker {
  z-index: 1;
  background-color: #fff;
  position: absolute;
  top: 72px;
}

.DateRangePicker__picker--rtl {
  direction: rtl;
}

.DateRangePicker__picker--direction-left {
  left: 0;
}

.DateRangePicker__picker--direction-right {
  right: 0;
}

.DateRangePicker__picker--portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.DateRangePicker__picker--full-screen-portal {
  background-color: #fff;
}

.DateRangePicker__close {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2;
}
.DateRangePicker__close svg {
  height: 15px;
  width: 15px;
  fill: #cacccd;
}
.DateRangePicker__close:hover, .DateRangePicker__close:focus {
  color: #b0b3b4;
  text-decoration: none;
}

.DateRangePickerInput {
  background-color: #fff;
  border: 1px solid #cacccd;
  display: inline-block;
}

.DateRangePickerInput--disabled {
  background: #cacccd;
}

.DateRangePickerInput--rtl {
  direction: rtl;
}

.DateRangePickerInput__arrow {
  display: inline-block;
  vertical-align: middle;
}

.DateRangePickerInput__arrow svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px;
}

.DateRangePickerInput__clear-dates {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 10px 0 5px;
}

.DateRangePickerInput__clear-dates svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle;
}

.DateRangePickerInput__clear-dates--hide {
  visibility: hidden;
}

.DateRangePickerInput__clear-dates:focus,
.DateRangePickerInput__clear-dates--hover {
  background: #dbdbdb;
  border-radius: 50%;
}

.DateRangePickerInput__calendar-icon {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px;
}
.DateRangePickerInput__calendar-icon svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle;
}

.SingleDatePicker {
  position: relative;
  display: inline-block;
}

.SingleDatePicker__picker {
  z-index: 1;
  background-color: #fff;
  position: absolute;
  top: 72px;
}

.SingleDatePicker__picker--rtl {
  direction: rtl;
}

.SingleDatePicker__picker--direction-left {
  left: 0;
}

.SingleDatePicker__picker--direction-right {
  right: 0;
}

.SingleDatePicker__picker--portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.SingleDatePicker__picker--full-screen-portal {
  background-color: #fff;
}

.SingleDatePicker__close {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2;
}
.SingleDatePicker__close svg {
  height: 15px;
  width: 15px;
  fill: #cacccd;
}
.SingleDatePicker__close:hover, .SingleDatePicker__close:focus {
  color: #b0b3b4;
  text-decoration: none;
}

.SingleDatePickerInput {
  background-color: #fff;
  border: 1px solid #dbdbdb;
}

.SingleDatePickerInput--rtl {
  direction: rtl;
}

.SingleDatePickerInput__clear-date {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 10px 0 5px;
}

.SingleDatePickerInput__clear-date svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle;
}

.SingleDatePickerInput__clear-date--hide {
  visibility: hidden;
}

.SingleDatePickerInput__clear-date:focus,
.SingleDatePickerInput__clear-date--hover {
  background: #dbdbdb;
  border-radius: 50%;
}

.SingleDatePickerInput__calendar-icon {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px;
}
.SingleDatePickerInput__calendar-icon svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle;
}

.products-container:after, .artist-attribution__body:after, .artist-attribution:after {
  clear: both;
  content: "";
  display: table;
}

.grid-container {
  max-width: 58.75rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  position: relative;
}
.grid-container:after {
  content: " ";
  display: block;
  clear: both;
}

.select-menu-dropdown__menuTitle, .select-menu-dropdown__item, .productCell__category, .artist-attribution__name, .artist-attribution__location {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.legacyGlobalStyles html {
  box-sizing: border-box;
}
.legacyGlobalStyles html,
.legacyGlobalStyles body {
  font-size: 100%;
}
.legacyGlobalStyles .columns,
.legacyGlobalStyles *:before,
.legacyGlobalStyles *:after {
  box-sizing: border-box;
}
.legacyGlobalStyles img {
  -ms-interpolation-mode: bicubic;
}

.row {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row.collapse .row {
  margin-left: 0;
  margin-right: 0;
}
.row .row {
  margin: 0 -0.625em;
  max-width: none;
  width: auto;
}
.row .row:before, .row .row:after {
  content: " ";
  display: table;
}
.row .row:after {
  clear: both;
}
.row .row.collapse {
  margin: 0;
  max-width: none;
  width: auto;
}
.row .row.collapse:before, .row .row.collapse:after {
  content: " ";
  display: table;
}
.row .row.collapse:after {
  clear: both;
}

.column,
.columns {
  padding-left: 0.625em;
  padding-right: 0.625em;
  width: 100%;
  float: left;
}

.column + .column:last-child,
.column + .columns:last-child,
.columns + .column:last-child,
.columns + .columns:last-child {
  float: right;
}
.column + .column.end,
.column + .columns.end,
.columns + .column.end,
.columns + .columns.end {
  float: left;
}

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .small-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .small-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .small-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .small-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .small-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .small-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .small-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .small-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .small-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .small-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .small-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .small-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .small-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .small-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .small-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .small-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .small-0 {
    width: 0;
    display: none;
  }
  .small-1 {
    width: 8.3333333333%;
  }
  .small-2 {
    width: 16.6666666667%;
  }
  .small-3 {
    width: 25%;
  }
  .small-4 {
    width: 33.3333333333%;
  }
  .small-5 {
    width: 41.6666666667%;
  }
  .small-6 {
    width: 50%;
  }
  .small-7 {
    width: 58.3333333333%;
  }
  .small-8 {
    width: 66.6666666667%;
  }
  .small-9 {
    width: 75%;
  }
  .small-10 {
    width: 83.3333333333%;
  }
  .small-11 {
    width: 91.6666666667%;
  }
  .small-12 {
    width: 100%;
  }
  .small-offset-0 {
    margin-left: 0 !important;
  }
  .small-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .small-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .small-offset-3 {
    margin-left: 25% !important;
  }
  .small-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .small-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .small-offset-6 {
    margin-left: 50% !important;
  }
  .small-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .small-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .small-offset-9 {
    margin-left: 75% !important;
  }
  .small-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .small-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered,
  .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none;
  }
  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left;
  }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }
  .row.small-collapse > .column,
  .row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.small-uncollapse > .column,
  .row.small-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .phone-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .phone-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .phone-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .phone-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .phone-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .phone-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .phone-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .phone-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .phone-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .phone-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .phone-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .phone-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .phone-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .phone-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .phone-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .phone-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .phone-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .phone-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .phone-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .phone-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .phone-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .phone-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .phone-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .phone-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .phone-0 {
    width: 0;
    display: none;
  }
  .phone-1 {
    width: 8.3333333333%;
  }
  .phone-2 {
    width: 16.6666666667%;
  }
  .phone-3 {
    width: 25%;
  }
  .phone-4 {
    width: 33.3333333333%;
  }
  .phone-5 {
    width: 41.6666666667%;
  }
  .phone-6 {
    width: 50%;
  }
  .phone-7 {
    width: 58.3333333333%;
  }
  .phone-8 {
    width: 66.6666666667%;
  }
  .phone-9 {
    width: 75%;
  }
  .phone-10 {
    width: 83.3333333333%;
  }
  .phone-11 {
    width: 91.6666666667%;
  }
  .phone-12 {
    width: 100%;
  }
  .phone-offset-0 {
    margin-left: 0 !important;
  }
  .phone-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .phone-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .phone-offset-3 {
    margin-left: 25% !important;
  }
  .phone-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .phone-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .phone-offset-6 {
    margin-left: 50% !important;
  }
  .phone-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .phone-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .phone-offset-9 {
    margin-left: 75% !important;
  }
  .phone-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .phone-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .phone-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.phone-centered,
  .columns.phone-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.phone-uncentered,
  .columns.phone-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.phone-centered:last-child,
  .columns.phone-centered:last-child {
    float: none;
  }
  .column.phone-uncentered:last-child,
  .columns.phone-uncentered:last-child {
    float: left;
  }
  .column.phone-uncentered.opposite,
  .columns.phone-uncentered.opposite {
    float: right;
  }
  .row.phone-collapse > .column,
  .row.phone-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.phone-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.phone-uncollapse > .column,
  .row.phone-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .tablet-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .tablet-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .tablet-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .tablet-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .tablet-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .tablet-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .tablet-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .tablet-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .tablet-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .tablet-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .tablet-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .tablet-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .tablet-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .tablet-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .tablet-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .tablet-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .tablet-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .tablet-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .tablet-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .tablet-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .tablet-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .tablet-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .tablet-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .tablet-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .tablet-0 {
    width: 0;
    display: none;
  }
  .tablet-1 {
    width: 8.3333333333%;
  }
  .tablet-2 {
    width: 16.6666666667%;
  }
  .tablet-3 {
    width: 25%;
  }
  .tablet-4 {
    width: 33.3333333333%;
  }
  .tablet-5 {
    width: 41.6666666667%;
  }
  .tablet-6 {
    width: 50%;
  }
  .tablet-7 {
    width: 58.3333333333%;
  }
  .tablet-8 {
    width: 66.6666666667%;
  }
  .tablet-9 {
    width: 75%;
  }
  .tablet-10 {
    width: 83.3333333333%;
  }
  .tablet-11 {
    width: 91.6666666667%;
  }
  .tablet-12 {
    width: 100%;
  }
  .tablet-offset-0 {
    margin-left: 0 !important;
  }
  .tablet-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .tablet-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .tablet-offset-3 {
    margin-left: 25% !important;
  }
  .tablet-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .tablet-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .tablet-offset-6 {
    margin-left: 50% !important;
  }
  .tablet-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .tablet-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .tablet-offset-9 {
    margin-left: 75% !important;
  }
  .tablet-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .tablet-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .tablet-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.tablet-centered,
  .columns.tablet-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.tablet-uncentered,
  .columns.tablet-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.tablet-centered:last-child,
  .columns.tablet-centered:last-child {
    float: none;
  }
  .column.tablet-uncentered:last-child,
  .columns.tablet-uncentered:last-child {
    float: left;
  }
  .column.tablet-uncentered.opposite,
  .columns.tablet-uncentered.opposite {
    float: right;
  }
  .row.tablet-collapse > .column,
  .row.tablet-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.tablet-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.tablet-uncollapse > .column,
  .row.tablet-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .mobile-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .mobile-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .mobile-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .mobile-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .mobile-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .mobile-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .mobile-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .mobile-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .mobile-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .mobile-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .mobile-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .mobile-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .mobile-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .mobile-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .mobile-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .mobile-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .mobile-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .mobile-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .mobile-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .mobile-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .mobile-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .mobile-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .mobile-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .mobile-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .mobile-0 {
    width: 0;
    display: none;
  }
  .mobile-1 {
    width: 8.3333333333%;
  }
  .mobile-2 {
    width: 16.6666666667%;
  }
  .mobile-3 {
    width: 25%;
  }
  .mobile-4 {
    width: 33.3333333333%;
  }
  .mobile-5 {
    width: 41.6666666667%;
  }
  .mobile-6 {
    width: 50%;
  }
  .mobile-7 {
    width: 58.3333333333%;
  }
  .mobile-8 {
    width: 66.6666666667%;
  }
  .mobile-9 {
    width: 75%;
  }
  .mobile-10 {
    width: 83.3333333333%;
  }
  .mobile-11 {
    width: 91.6666666667%;
  }
  .mobile-12 {
    width: 100%;
  }
  .mobile-offset-0 {
    margin-left: 0 !important;
  }
  .mobile-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .mobile-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .mobile-offset-3 {
    margin-left: 25% !important;
  }
  .mobile-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .mobile-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .mobile-offset-6 {
    margin-left: 50% !important;
  }
  .mobile-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .mobile-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .mobile-offset-9 {
    margin-left: 75% !important;
  }
  .mobile-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .mobile-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .mobile-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.mobile-centered,
  .columns.mobile-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.mobile-uncentered,
  .columns.mobile-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.mobile-centered:last-child,
  .columns.mobile-centered:last-child {
    float: none;
  }
  .column.mobile-uncentered:last-child,
  .columns.mobile-uncentered:last-child {
    float: left;
  }
  .column.mobile-uncentered.opposite,
  .columns.mobile-uncentered.opposite {
    float: right;
  }
  .row.mobile-collapse > .column,
  .row.mobile-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.mobile-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.mobile-uncollapse > .column,
  .row.mobile-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media (min-width: 961px) and (max-width: 1199px) {
  .desktop-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .desktop-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .desktop-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .desktop-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .desktop-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .desktop-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .desktop-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .desktop-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .desktop-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .desktop-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .desktop-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .desktop-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .desktop-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .desktop-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .desktop-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .desktop-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .desktop-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .desktop-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .desktop-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .desktop-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .desktop-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .desktop-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .desktop-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .desktop-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .desktop-0 {
    width: 0;
    display: none;
  }
  .desktop-1 {
    width: 8.3333333333%;
  }
  .desktop-2 {
    width: 16.6666666667%;
  }
  .desktop-3 {
    width: 25%;
  }
  .desktop-4 {
    width: 33.3333333333%;
  }
  .desktop-5 {
    width: 41.6666666667%;
  }
  .desktop-6 {
    width: 50%;
  }
  .desktop-7 {
    width: 58.3333333333%;
  }
  .desktop-8 {
    width: 66.6666666667%;
  }
  .desktop-9 {
    width: 75%;
  }
  .desktop-10 {
    width: 83.3333333333%;
  }
  .desktop-11 {
    width: 91.6666666667%;
  }
  .desktop-12 {
    width: 100%;
  }
  .desktop-offset-0 {
    margin-left: 0 !important;
  }
  .desktop-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .desktop-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .desktop-offset-3 {
    margin-left: 25% !important;
  }
  .desktop-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .desktop-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .desktop-offset-6 {
    margin-left: 50% !important;
  }
  .desktop-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .desktop-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .desktop-offset-9 {
    margin-left: 75% !important;
  }
  .desktop-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .desktop-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .desktop-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.desktop-centered,
  .columns.desktop-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.desktop-uncentered,
  .columns.desktop-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.desktop-centered:last-child,
  .columns.desktop-centered:last-child {
    float: none;
  }
  .column.desktop-uncentered:last-child,
  .columns.desktop-uncentered:last-child {
    float: left;
  }
  .column.desktop-uncentered.opposite,
  .columns.desktop-uncentered.opposite {
    float: right;
  }
  .row.desktop-collapse > .column,
  .row.desktop-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.desktop-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.desktop-uncollapse > .column,
  .row.desktop-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media (min-width: 961px) {
  .desktop-and-lg-desktop-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .desktop-and-lg-desktop-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .desktop-and-lg-desktop-0 {
    width: 0;
    display: none;
  }
  .desktop-and-lg-desktop-1 {
    width: 8.3333333333%;
  }
  .desktop-and-lg-desktop-2 {
    width: 16.6666666667%;
  }
  .desktop-and-lg-desktop-3 {
    width: 25%;
  }
  .desktop-and-lg-desktop-4 {
    width: 33.3333333333%;
  }
  .desktop-and-lg-desktop-5 {
    width: 41.6666666667%;
  }
  .desktop-and-lg-desktop-6 {
    width: 50%;
  }
  .desktop-and-lg-desktop-7 {
    width: 58.3333333333%;
  }
  .desktop-and-lg-desktop-8 {
    width: 66.6666666667%;
  }
  .desktop-and-lg-desktop-9 {
    width: 75%;
  }
  .desktop-and-lg-desktop-10 {
    width: 83.3333333333%;
  }
  .desktop-and-lg-desktop-11 {
    width: 91.6666666667%;
  }
  .desktop-and-lg-desktop-12 {
    width: 100%;
  }
  .desktop-and-lg-desktop-offset-0 {
    margin-left: 0 !important;
  }
  .desktop-and-lg-desktop-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .desktop-and-lg-desktop-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .desktop-and-lg-desktop-offset-3 {
    margin-left: 25% !important;
  }
  .desktop-and-lg-desktop-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .desktop-and-lg-desktop-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .desktop-and-lg-desktop-offset-6 {
    margin-left: 50% !important;
  }
  .desktop-and-lg-desktop-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .desktop-and-lg-desktop-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .desktop-and-lg-desktop-offset-9 {
    margin-left: 75% !important;
  }
  .desktop-and-lg-desktop-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .desktop-and-lg-desktop-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .desktop-and-lg-desktop-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.desktop-and-lg-desktop-centered,
  .columns.desktop-and-lg-desktop-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.desktop-and-lg-desktop-uncentered,
  .columns.desktop-and-lg-desktop-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.desktop-and-lg-desktop-centered:last-child,
  .columns.desktop-and-lg-desktop-centered:last-child {
    float: none;
  }
  .column.desktop-and-lg-desktop-uncentered:last-child,
  .columns.desktop-and-lg-desktop-uncentered:last-child {
    float: left;
  }
  .column.desktop-and-lg-desktop-uncentered.opposite,
  .columns.desktop-and-lg-desktop-uncentered.opposite {
    float: right;
  }
  .row.desktop-and-lg-desktop-collapse > .column,
  .row.desktop-and-lg-desktop-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.desktop-and-lg-desktop-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.desktop-and-lg-desktop-uncollapse > .column,
  .row.desktop-and-lg-desktop-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media only screen and (min-width:40.0625em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .medium-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .medium-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .medium-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .medium-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .medium-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .medium-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .medium-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .medium-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .medium-0 {
    width: 0;
    display: none;
  }
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-0 {
    margin-left: 0 !important;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .medium-offset-3 {
    margin-left: 25% !important;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .medium-offset-6 {
    margin-left: 50% !important;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .medium-offset-9 {
    margin-left: 75% !important;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none;
  }
  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left;
  }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }
  .row.medium-collapse > .column,
  .row.medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.medium-uncollapse > .column,
  .row.medium-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .large-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .large-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .large-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .large-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .large-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .large-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .large-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .large-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .large-0 {
    width: 0;
    display: none;
  }
  .large-1 {
    width: 8.3333333333%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-3 {
    width: 25%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-6 {
    width: 50%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-9 {
    width: 75%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-0 {
    margin-left: 0 !important;
  }
  .large-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .large-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .large-offset-3 {
    margin-left: 25% !important;
  }
  .large-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .large-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .large-offset-6 {
    margin-left: 50% !important;
  }
  .large-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .large-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .large-offset-9 {
    margin-left: 75% !important;
  }
  .large-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .large-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered,
  .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none;
  }
  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left;
  }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }
  .row.large-collapse > .column,
  .row.large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.large-uncollapse > .column,
  .row.large-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
}
.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

[class*=block-grid-] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem;
}
[class*=block-grid-]:before, [class*=block-grid-]:after {
  content: " ";
  display: table;
}
[class*=block-grid-]:after {
  clear: both;
}
[class*=block-grid-] > li {
  display: block;
  box-sizing: border-box;
  float: left;
  height: auto;
  padding: 0 0.625rem 1.25rem;
}

@media only screen {
  .small-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .small-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .small-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .small-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .small-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .small-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .small-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .small-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .small-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .small-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .small-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .small-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .small-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width:40.0625em) {
  .medium-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .medium-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .medium-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .medium-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width:64.0625em) {
  .large-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .large-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .large-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .large-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .large-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .large-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .large-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .large-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .large-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .large-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .large-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .large-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.SocialMediaShareButton {
  display: inline-block;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.divider {
  height: 1px;
  overflow: hidden;
  background-color: #eee;
  border-bottom: 1px solid #fff;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.panel {
  background-color: #fff;
}

.panel--shaded {
  background-color: #f9f9f9;
  border: 1px solid #eee;
}
@media (min-width: 0px) and (max-width: 599px) {
  .panel--shaded {
    border-right-width: 0;
    border-left-width: 0;
  }
}

.panel__cell {
  padding: 0px 20px 24px 20px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .panel__cell {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.panel__footer {
  background-color: #fff;
}

/*!
 * @license
 * MyFonts Webfont Build ID 2863306, 2014-08-14T14:49:27-0400
 *
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are
 * explicitly restricted from using the Licensed Webfonts(s).
 *
 * You may obtain a valid license at the URLs below.
 *
 * Webfont: Brandon Grotesque Regular by HVD Fonts
 * URL: http://www.myfonts.com/fonts/hvdfonts/brandon-grotesque/regular/
 *
 * Webfont: Brandon Grotesque Light by HVD Fonts
 * URL: http://www.myfonts.com/fonts/hvdfonts/brandon-grotesque/light/
 *
 * Webfont: Brandon Grotesque Bold by HVD Fonts
 * URL: http://www.myfonts.com/fonts/hvdfonts/brandon-grotesque/bold/
 *
 *
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=2863306
 * Licensed pageviews: 50,000,000
 * Webfonts copyright: Copyright (c) 2009 by Hannes von Doehren. All rights reserved.
 *
 *  2014 MyFonts Inc
 */
@font-face {
  font-family: "brandon-grotesque";
  font-style: normal;
  font-weight: 400;
  src: url("https://minted-fonts.mintedcdn.net/brandon-grotesque/400.woff");
}
@font-face {
  font-family: "brandon-grotesque";
  font-style: normal;
  font-weight: 300;
  src: url("https://minted-fonts.mintedcdn.net/brandon-grotesque/300.woff");
}
@font-face {
  font-family: "brandon-grotesque";
  font-style: normal;
  font-weight: 700;
  src: url("https://minted-fonts.mintedcdn.net/brandon-grotesque/700.woff");
}
@font-face {
  font-family: "daniel";
  font-style: normal;
  font-weight: 400;
  src: url("https://minted-fonts.mintedcdn.net/daniel/400.woff");
}
@font-face {
  font-family: "daniel";
  font-style: normal;
  font-weight: 700;
  src: url("https://minted-fonts.mintedcdn.net/daniel/700.woff");
}
@font-face {
  font-family: "archer";
  font-style: normal;
  font-weight: 400;
  src: url("https://minted-fonts.mintedcdn.net/archer/400.woff");
}
@font-face {
  font-family: "archer";
  font-style: normal;
  font-weight: 500;
  src: url("https://minted-fonts.mintedcdn.net/archer/500.woff");
}
@font-face {
  font-family: "archer";
  font-style: italic;
  font-weight: 500;
  src: url("https://minted-fonts.mintedcdn.net/archer/italic/500.woff");
}
@font-face {
  font-family: "archer";
  font-style: normal;
  font-weight: 600;
  src: url("https://minted-fonts.mintedcdn.net/archer/600.woff");
}
@font-face {
  font-family: "archer";
  font-style: normal;
  font-weight: 700;
  src: url("https://minted-fonts.mintedcdn.net/archer/700.woff");
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
.legacyGlobalStyles {
  /**
  * Remove default margin.
  */
  /* HTML5 display definitions
    ========================================================================== */
  /**
  * Correct `block` display not defined for any HTML5 element in IE 8/9.
  * Correct `block` display not defined for `details` or `summary` in IE 10/11
  * and Firefox.
  * Correct `block` display not defined for `main` in IE 11.
  */
  /**
  * 1. Correct `inline-block` display not defined in IE 8/9.
  * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  */
  /**
  * Prevent displaying `audio` without controls in Mobile Safari 4/5/6/7.
  */
  /**
  * Address `[hidden]` styling not present in IE 8/9/10.
  * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
  */
  /* Links
    ========================================================================== */
  /**
  * Remove the gray background color from active links in IE 10.
  */
  /**
  * Improve readability of focused elements when they are also in an
  * active/hover state.
  */
  /* Text-level semantics
    ========================================================================== */
  /**
  * Address inconsistent styling of `abbr[title]`.
  * 1. Correct styling in Firefox 39 and Opera 12.
  * 2. Correct missing styling in Chrome, Edge, IE, Opera, and Safari.
  */
  /**
  * Address inconsistent styling of b and strong.
  * 1. Correct duplicate application of `bolder` in Safari 6.0.2.
  * 2. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+.
  */
  /**
  * Address styling not present in Safari and Chrome.
  */
  /**
  * Address variable `h1` font-size and margin within `section` and `article`
  * contexts in Firefox 4+, Safari, and Chrome.
  */
  /**
  * Address styling not present in IE 8/9.
  */
  /**
  * Address inconsistent and variable font size in all browsers.
  */
  /**
  * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  */
  /* Embedded content
    ========================================================================== */
  /**
  * Remove border when inside `a` element in IE 8/9/10.
  */
  /**
  * Correct overflow not hidden in IE 9/10/11.
  */
  /* Grouping content
    ========================================================================== */
  /**
  * Address margin not present in IE 8/9 and Safari.
  */
  /**
  * Address inconsistent styling of `hr`.
  * 1. Correct `box-sizing` set to `border-box` in Firefox.
  * 2. Correct `overflow` set to `hidden` in IE 8/9/10/11 and Edge 12.
  */
  /**
  * Contain overflow in all browsers.
  */
  /**
  * 1. Correct inheritance and scaling of font-size for preformatted text.
  * 2. Address odd `em`-unit font size rendering in all browsers.
  */
  /* Forms
    ========================================================================== */
  /**
  * Known limitation: by default, Chrome and Safari on OS X allow very limited
  * styling of `select`, unless a `border` property is set.
  */
  /**
  * 1. Correct font properties not being inherited.
  * 2. Address margins set differently in Firefox 4+, Safari, and Chrome.
  */
  /**
  * Address `overflow` set to `hidden` in IE 8/9/10/11.
  */
  /**
  * Address inconsistent `text-transform` inheritance for `button` and `select`.
  * All other form control elements do not inherit `text-transform` values.
  * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  * Correct `select` style inheritance in Firefox.
  */
  /**
  * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  *    and `video` controls.
  * 2. Correct inability to style clickable `input` types in iOS.
  * 3. Improve usability and consistency of cursor style between image-type
  *    `input` and others.
  */
  /**
  * Re-set default cursor for disabled elements.
  */
  /**
  * Remove inner padding and border in Firefox 4+.
  */
  /**
  * Restore focus style in Firefox 4+ (unset by a rule above)
  */
  /**
  * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  * the UA stylesheet.
  */
  /**
  * It's recommended that you don't attempt to style these elements.
  * Firefox's implementation doesn't respect box-sizing, padding, or width.
  *
  * 1. Address box sizing set to `content-box` in IE 8/9/10.
  * 2. Remove excess padding in IE 8/9/10.
  */
  /**
  * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  * `font-size` values of the `input`, it causes the cursor style of the
  * decrement button to change from `default` to `text`.
  */
  /**
  * Address `appearance` set to `searchfield` in Safari and Chrome.
  */
  /**
  * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  * Safari (but not Chrome) clips the cancel button when the search input has
  * padding (and `textfield` appearance).
  */
  /**
  * Define consistent border, margin, and padding.
  */
  /**
  * 1. Correct `color` not being inherited in IE 8/9/10/11.
  * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  */
  /**
  * Remove default vertical scrollbar in IE 8/9/10/11.
  */
  /**
  * Restore font weight (unset by a rule above).
  * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  */
}
.legacyGlobalStyles html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
.legacyGlobalStyles body {
  margin: 0;
}
.legacyGlobalStyles article,
.legacyGlobalStyles aside,
.legacyGlobalStyles details,
.legacyGlobalStyles figcaption,
.legacyGlobalStyles figure,
.legacyGlobalStyles footer,
.legacyGlobalStyles header,
.legacyGlobalStyles main,
.legacyGlobalStyles menu,
.legacyGlobalStyles nav,
.legacyGlobalStyles section,
.legacyGlobalStyles summary {
  display: block;
}
.legacyGlobalStyles audio,
.legacyGlobalStyles canvas,
.legacyGlobalStyles progress,
.legacyGlobalStyles video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
.legacyGlobalStyles audio:not([controls]) {
  display: none;
  height: 0;
}
.legacyGlobalStyles [hidden],
.legacyGlobalStyles template {
  display: none;
}
.legacyGlobalStyles a {
  background-color: transparent;
}
.legacyGlobalStyles a:active,
.legacyGlobalStyles a:hover {
  outline: 0;
}
.legacyGlobalStyles abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
.legacyGlobalStyles b,
.legacyGlobalStyles strong {
  font-weight: inherit; /* 1 */
}
.legacyGlobalStyles b,
.legacyGlobalStyles strong {
  font-weight: bolder; /* 2 */
}
.legacyGlobalStyles dfn {
  font-style: italic;
}
.legacyGlobalStyles h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.legacyGlobalStyles mark {
  background-color: #ff0;
  color: #000;
}
.legacyGlobalStyles small {
  font-size: 80%;
}
.legacyGlobalStyles sub,
.legacyGlobalStyles sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.legacyGlobalStyles sup {
  top: -0.5em;
}
.legacyGlobalStyles sub {
  bottom: -0.25em;
}
.legacyGlobalStyles img {
  border: 0;
}
.legacyGlobalStyles svg:not(:root) {
  overflow: hidden;
}
.legacyGlobalStyles figure {
  margin: 1em 40px;
}
.legacyGlobalStyles hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
.legacyGlobalStyles pre {
  overflow: auto;
}
.legacyGlobalStyles code,
.legacyGlobalStyles kbd,
.legacyGlobalStyles pre,
.legacyGlobalStyles samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
.legacyGlobalStyles button,
.legacyGlobalStyles input,
.legacyGlobalStyles optgroup,
.legacyGlobalStyles select,
.legacyGlobalStyles textarea {
  font: inherit; /* 1 */
  margin: 0; /* 2 */
}
.legacyGlobalStyles button {
  overflow: visible;
}
.legacyGlobalStyles button,
.legacyGlobalStyles select {
  text-transform: none;
}
.legacyGlobalStyles button,
.legacyGlobalStyles html input[type=button],
.legacyGlobalStyles input[type=reset],
.legacyGlobalStyles input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
.legacyGlobalStyles button[disabled],
.legacyGlobalStyles html input[disabled] {
  cursor: default;
}
.legacyGlobalStyles button::-moz-focus-inner,
.legacyGlobalStyles input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.legacyGlobalStyles button:-moz-focusring,
.legacyGlobalStyles input:-moz-focusring {
  outline: 1px dotted ButtonText;
}
.legacyGlobalStyles input {
  line-height: normal;
}
.legacyGlobalStyles input[type=checkbox],
.legacyGlobalStyles input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
.legacyGlobalStyles input[type=number]::-webkit-inner-spin-button,
.legacyGlobalStyles input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
.legacyGlobalStyles input[type=search] {
  -webkit-appearance: textfield;
}
.legacyGlobalStyles input[type=search]::-webkit-search-cancel-button,
.legacyGlobalStyles input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.legacyGlobalStyles fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
.legacyGlobalStyles legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}
.legacyGlobalStyles textarea {
  overflow: auto;
}
.legacyGlobalStyles optgroup {
  font-weight: bold;
}

.app__content {
  position: relative;
  z-index: 1;
}
.app__content.responsive-header {
  z-index: 201;
  position: relative;
}
.app__modal-dialogs {
  position: relative;
  z-index: 1;
  z-index: 202;
}
.app .lg-grid-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.alert {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  padding: 10px 12px;
  border-radius: 6px;
  border-width: 1px;
  border-style: solid;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
      align-items: baseline;
}
.alert--warning {
  color: #565547;
  background-color: #fcf8e3;
  border-color: #faf2cc;
}

.alert__icon {
  margin-right: 10px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.artist-bio {
  display: inline-block;
  background-color: #f9f9f9;
  padding: 20px;
  box-sizing: border-box;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artist-bio {
    text-align: center;
  }
}
.artist-bio__about {
  margin: 0 0 20px 0;
}
.artist-bio .artist-attribution {
  margin: 20px 0;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artist-bio .artist-attribution {
    display: inline-block;
    margin: 0;
  }
}
.artist-bio__bio {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  margin: 20px 0 35px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artist-bio__bio {
    display: block;
  }
}
.artist-bio__store-url {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
  display: block;
  margin: 15px 0 0 0;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.products-container:before, .artist-attribution__body:before, .artist-attribution:before, .products-container:after, .artist-attribution__body:after, .artist-attribution:after {
  content: " ";
  display: table;
}
.products-container:after, .artist-attribution__body:after, .artist-attribution:after {
  clear: both;
}

.attribute-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.attribute-list__item {
  -ms-flex-align: baseline;
      align-items: baseline;
  border-bottom: 1px dotted #ccc;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 10px;
}
.attribute-list__item:only-child {
  padding-top: 0;
}
.attribute-list__label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  display: inline-block;
  margin: 0;
  width: 33%;
}
.attribute-list__attribute {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  color: #999;
  display: inline-block;
  margin: 0;
  width: 66%;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.breadcrumbs {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}
.breadcrumbs .breadcrumbs__crumb {
  text-decoration: none;
  text-transform: uppercase;
  color: #8AAD3A;
}
.breadcrumbs .breadcrumbs__crumb:hover {
  text-decoration: underline;
  color: #6c872d;
}
.breadcrumbs .breadcrumbs__crumb:after {
  text-decoration: none;
  display: inline-block;
  color: #666;
  content: "::";
  margin: 0 10px;
  position: relative;
  top: -2px;
}
.breadcrumbs .breadcrumbs__crumb:last-child {
  color: #999;
  padding-right: 0;
}
.breadcrumbs .breadcrumbs__crumb:last-child:hover {
  text-decoration: none;
}
.breadcrumbs .breadcrumbs__crumb:last-child:after {
  content: none;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.btn {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #8AAD3A;
  background-image: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  line-height: 42px;
  padding: 2px 24px 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  /*Spinner*/
  /*
   * Margin calculation:
   * = ((btn line-height - height of spinner (16)) / 2) - spinner border (5)
   * Note: btn line-height can change per size (i.e. btn vs. btn--small)
   */
}
@media (min-width: 0px) and (max-width: 960px) {
  .btn {
    display: block;
    width: 100%;
  }
}
.btn:hover {
  background-color: #6c872d;
  color: #fff;
  text-decoration: none;
}
.btn:active {
  color: #fff;
  background-color: #5c7427;
}
.btn--small {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  line-height: 33px;
  padding-left: 20px;
  padding-right: 20px;
}
.btn--small .btn--spinner {
  margin: 3.5px auto;
}
.btn--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
  font-size: 0.5rem;
  font-weight: 600;
  padding-left: 10px;
  padding-right: 10px;
}
.btn--ghost {
  color: #8AAD3A;
  box-shadow: inset 0 0 0 2px #8AAD3A;
  background-color: white;
}
.btn--ghost:hover {
  color: white;
  border-color: #6c872d;
}
.btn--ghost:hover .icon {
  fill: white;
}
.btn--ghost:active {
  color: white;
  border-color: #5c7427;
}
.btn--ghost .icon {
  fill: #8AAD3A;
}
.btn--borderless {
  color: #8AAD3A;
  background-color: white;
}
.btn--borderless:hover {
  color: #6c872d;
  background-color: white;
}
.btn--borderless:active {
  color: #6c872d;
  background-color: white;
}
.btn--borderless .btn__icon {
  fill: #8AAD3A;
}
.btn--minimal {
  padding: 0;
}
.btn__icon {
  fill: white;
  height: 21px;
  vertical-align: text-bottom !important;
  width: 21px;
}
.btn__icon:first-child {
  margin-right: 10px;
}
.btn--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.btn--spinnerContainer {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
}
.btn--spinner {
  margin: 8px 8px 8px 0px;
  font-size: 10px;
  position: absolute;
  text-indent: -9999em;
  border-top: 0.5em solid rgba(255, 255, 255, 0.2);
  border-right: 0.5em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
  border-left: 0.5em solid #fff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  -moz-animation: load8 1.1s infinite linear;
}
.btn--spinner--green {
  border-top: 0.5em solid #8AAD3A;
  border-right: 0.5em solid #8AAD3A;
  border-bottom: 0.5em solid #8AAD3A;
}
.btn--spinner, .btn--spinner:after {
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.btn--spinnerPlaceholder {
  color: #8AAD3A;
}
.btn--spinnerPlaceholderDisabled {
  color: #fff;
}

.btn-group .btn {
  display: inline-block;
  margin-right: 10px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .btn-group .btn {
    display: block;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.btn-group .btn:last-child {
  margin-right: 0;
}
.btn-group .btn--flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  margin-right: 10px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.carousel {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.carousel__prev-button,
.carousel__next-button {
  position: relative;
  padding: 10px;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel__inactive-button {
  opacity: 0.5;
}

.carousel__content {
  overflow: hidden;
  display: inline-block;
  position: relative;
}

.carousel__list {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.carousel__list-item {
  display: inline-block;
  float: left;
}

.carousel__pagination {
  background-color: #fff;
  padding: 3px 6px 4px 6px;
  display: inline-block;
  list-style-type: none;
  border-radius: 14px;
  position: absolute;
  top: 10px;
  line-height: 1;
  right: 10px;
  margin: 0;
  opacity: 0.85;
}

.carousel__pagination-item {
  display: inline-block;
  padding: 2px;
  margin: 0;
}
.carousel__pagination-item circle {
  stroke: #666;
  stroke-width: 2;
  fill: #eee !important;
}

.carousel__pagination-item--active circle {
  fill: #666 !important;
}

.carousel__list-slide-transition-enter {
  opacity: 0;
}

.carousel__list-slide-transition-enter-active {
  opacity: 0.01;
}

.carousel__list-fade-transition-enter {
  opacity: 0.01;
}

.carousel__list-fade-transition-enter-active {
  opacity: 1;
}

.carousel__list-fade-transition-leave {
  opacity: 1;
}

.carousel__list-fade-transition-leave-active {
  opacity: 0.01;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.carousel-with-title {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  background-color: #eee;
  padding: 20px;
  width: 100%;
}
.carousel-with-title__title {
  margin-top: 0;
}
.carousel-with-title .carousel {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-flow: row;
      flex-flow: row;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  margin-top: -40px;
}
.carousel-with-title .carousel__content {
  padding-top: 40px;
  width: 100%;
}
.carousel-with-title .carousel__pagination {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  background-color: transparent;
  right: 0px;
  padding: 0px;
}
.carousel-with-title__view-item {
  margin-top: -20px;
  cursor: pointer;
  display: block;
  text-align: center;
  float: left;
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
}
.carousel-with-title__view-item:first-child {
  margin-left: 0;
}
.carousel-with-title__view-name {
  margin: 0;
  margin-top: 2%;
}
.carousel-with-title__image-src {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  color: transparent;
  height: 0;
  overflow: hidden;
  padding-bottom: 85%;
  text-indent: 101%;
  white-space: nowrap;
  width: 100%;
  margin-top: 5%;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.checkbox {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}
.checkbox__wrapper--soft-disabled {
  opacity: 0.5;
  cursor: default;
}
.checkbox__text {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  width: 75%;
}
.checkbox__input {
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  border-radius: 5px;
  border: 2px solid #ccc;
  cursor: pointer;
  display: inline-block;
  padding-bottom: 0;
  vertical-align: middle;
}
.checkbox__input--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.checkbox__input:after {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  background: transparent;
  color: #8AAD3A;
  content: "✓";
  font-size: 22px;
  position: relative;
  bottom: 0.25rem;
  visibility: hidden;
}
.checkbox__input:checked:after {
  visibility: visible;
}
.checkbox__input:focus {
  outline: 0;
}

.Envelopes input[type=checkbox]:after {
  font-size: 12px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

@media (min-width: 0px) and (max-width: 960px) {
  .color-picker {
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
    overflow-x: scroll;
    white-space: nowrap;
  }
}
.color-picker__list {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.color-picker__list--2-up {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.color-picker__item {
  background-repeat: no-repeat;
  border: none;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1px;
  margin-bottom: 4px;
  padding: 2px;
}
.color-picker__item:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 2px #666;
}
.color-picker__item:last-child {
  margin-right: 0;
}
.color-picker__item--active {
  box-shadow: inset 0 0 0 2px black;
}
.color-picker__item--active .color-swatch {
  border: 1px solid #fff;
}
.color-picker__item--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.color-picker__item--custom-color .color-swatch {
  background-size: contain;
}
.color-picker__color-name {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  margin-top: 5px;
}

.color-swatch {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin: 2px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .color-swatch {
    width: 40px;
    height: 40px;
  }
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.SingleDatePickerInput .DateInput__display-text {
  padding: 0px;
}
.SingleDatePickerInput .DateInput__display-text--focused {
  background-color: transparent;
  color: #8AAD3A;
}

.SingleDatePicker .DateInput--with-caret::before {
  top: 43px;
}
.SingleDatePicker .DateInput--with-caret::after {
  top: 44px;
}
.SingleDatePicker__picker {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  /* This was added to deal with a bug on safari on iOS where the date-picker
     is hidden behind the main page's div */
  z-index: 100;
}

.SingleDatePicker .SingleDatePicker__picker {
  top: 55px;
}

.DayPicker {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}
.DayPicker .CalendarDay {
  text-align: center;
}
.DayPicker .CalendarDay--hovered {
  background-color: #8AAD3A;
  color: #fff;
}
.DayPicker .CalendarDay--selected {
  background-color: #8AAD3A;
  color: #fff;
  border-color: transparent;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.dropdown {
  position: relative;
  margin-bottom: 0;
  display: inline-block;
}
@media (min-width: 0px) and (max-width: 599px) {
  .dropdown {
    display: block;
  }
}
.dropdown__control {
  border: 2px solid #ccc;
  box-sizing: border-box;
  position: relative;
  width: 100%;
}
.dropdown__selected {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  background-color: #fff;
  cursor: pointer;
  min-width: 150px;
  padding: 5px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown__selected:before, .dropdown__selected:after {
  content: " ";
  display: table;
}
.dropdown__selected:after {
  clear: both;
}
.dropdown__arrow {
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 8px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .dropdown__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.dropdown__menu {
  -webkit-overflow-scrolling: touch;
  background-color: white;
  border-color: #ccc;
  border-style: solid;
  border-top-style: none;
  border-width: 2px;
  box-sizing: border-box;
  float: left;
  max-height: 250px;
  min-width: 150px;
  overflow: scroll;
  overflow-x: hidden;
  position: absolute;
  width: 100%;
  z-index: 5;
}
.dropdown__option {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  cursor: pointer;
  min-width: 150px;
  padding: 7px 10px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .dropdown__option {
    font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.375;
    padding-top: 13px;
    padding-bottom: 12px;
  }
}
.dropdown__option--read-only {
  cursor: text;
  background: none;
  text-transform: capitalize;
  padding-left: 0;
}
.dropdown__menu-option:hover {
  background-color: #eee;
  margin-bottom: 0px;
}
.dropdown__menu-option--is-selected {
  background-color: #eee;
}
.dropdown__menu-option--is-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.dropdown--open {
  margin-bottom: 2px;
}
.dropdown--open .dropdown__control {
  border-bottom: 0px;
}
.dropdown--open .dropdown__menu {
  border-top: 2px solid #ccc;
}

.dropdown-with-image {
  padding: 2px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.dropdownContainer {
  margin-bottom: 0px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
}
.dropdownContainer__bubbleRight {
  width: 0;
  height: 0;
  position: absolute;
  z-index: 20;
}
.dropdownContainer__bubbleRight__bubble {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
  position: relative;
  left: 106px;
  top: -7px;
  width: 15px;
  height: 15px;
  display: block;
  color: white;
  background-color: #8AAD3A;
  border-radius: 50%;
  text-align: center;
  line-height: normal;
  font-weight: 500;
  font-size: 11px;
}
.dropdownContainer__control {
  border: 2px solid #ccc;
  box-sizing: border-box;
  position: relative;
  width: 124px;
  z-index: 10;
  background-color: #fff;
}
.dropdownContainer__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  background-color: #fff;
  cursor: pointer;
  padding: 6px 5px;
  height: 19px;
  line-height: normal;
}
.dropdownContainer__title__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 89px;
  display: inline-block;
}
.dropdownContainer__arrow {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 13px;
}
.dropdownContainer__arrow__icon {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #8AAD3A;
}
.dropdownContainer__menu {
  -webkit-overflow-scrolling: touch;
  background-color: #f9f9f9;
  border-color: #ccc;
  border-style: solid;
  border-width: 2px;
  box-sizing: border-box;
  float: left;
  overflow: visible;
  position: absolute;
  z-index: 5;
  top: 48px;
}
.dropdownContainer__menu__content {
  overflow: auto;
  max-height: 200px;
}
.dropdownContainer__menu__footer {
  height: 55px;
  border-top-color: #ccc;
  border-top-style: solid;
  border-top-width: 2px;
  overflow: hidden;
  text-align: right;
}
.dropdownContainer__menu__footer a {
  width: auto;
  margin: 10px 7px;
  display: inline-block;
}
.dropdownContainer__menu__footer .btn {
  display: inline-block;
}
.dropdownContainer--small__menu {
  width: 184px;
}
.dropdownContainer--medium__menu {
  width: 364px;
}
.dropdownContainer--medium__menu__footer .btn {
  padding-left: 60px;
  padding-right: 60px;
}
.dropdownContainer--large__menu {
  width: 544px;
}
.dropdownContainer--large__menu__footer .btn {
  padding-left: 60px;
  padding-right: 60px;
}

.dropdownContainer--open {
  margin-bottom: 2px;
}
.dropdownContainer--open .dropdownContainer__control {
  border-bottom-color: #f9f9f9;
}
.dropdownContainer--open .dropdownContainer__title {
  background-color: #f9f9f9;
  padding-bottom: 22px;
}
.dropdownContainer--open .dropdownContainer__arrow__icon {
  border-bottom: 5px solid #8AAD3A;
  border-top: none;
}

.dropdownContainer--sidebar {
  padding-left: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.dropdownContainer--sidebar .dropdownContainer__arrow {
  left: 10px;
  right: auto;
}
.dropdownContainer--sidebar .dropdownContainer__control {
  width: 100%;
  border: none;
  z-index: 0;
  background-color: #f9f9f9;
}
.dropdownContainer--sidebar .dropdownContainer__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 20px;
  background-color: #f9f9f9;
  height: auto;
  line-height: 25px;
}
.dropdownContainer--sidebar .dropdownContainer__title__text {
  max-width: none;
  padding-right: 0;
  padding-left: 6px;
}
.dropdownContainer--sidebar .dropdownContainer__menu {
  width: 100%;
  position: relative;
  top: 0;
  border: none;
  border-bottom: 1px solid #ccc;
}
.dropdownContainer--sidebar .dropdownContainer__menu .dropdownContainer__menu__content {
  overflow: auto;
  max-height: none;
}

.dropdownContainer--sidebar.dropdownContainer--open .dropdownContainer__title {
  padding-bottom: 10px;
}

.dropdownContainer--overlay {
  padding-left: 0;
  display: block;
  width: 100%;
}
.dropdownContainer--overlay .dropdownContainer__arrow {
  display: none;
}
.dropdownContainer--overlay .dropdownContainer__control {
  width: 100%;
  height: 45px;
  padding-top: 15px;
  border: none;
  z-index: 0;
  background-color: transparent;
}
.dropdownContainer--overlay .dropdownContainer__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  background-color: transparent;
}
.dropdownContainer--overlay .dropdownContainer__title__text {
  max-width: none;
  padding-right: 0;
}
.dropdownContainer--overlay .dropdownContainer__menu {
  width: 100%;
  position: relative;
  top: 0;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
}
.dropdownContainer--overlay .dropdownContainer__menu .dropdownContainer__menu__content {
  overflow: auto;
  max-height: none;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.favorite-prompt__content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  width: 145px;
  height: 40px;
  vertical-align: middle;
  line-height: 40px;
}
.favorite-prompt__highlight-text {
  color: #af4150;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.form__group {
  border: none;
  margin: 0;
  padding: 0;
}
.form__group--grid .form__field--inline .form__label {
  width: 33.33%;
  float: left;
  margin-right: 2.1276595745%;
  float: none;
}
.form__group--grid .form__field--inline .form__control {
  width: 66.66%;
  float: left;
  margin-right: 2.1276595745%;
  float: none;
}
.form__group legend {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.form__row {
  margin-bottom: 20px;
}
.form__row:last-child {
  margin-bottom: 0;
}

.form__field--inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: baseline;
      align-items: baseline;
  display: -webkit-flex; /* Safari */
  -webkit-justify-content: flex-start; /* Safari 6.1+ */
}
@media (min-width: 0px) and (max-width: 960px) {
  .form__field--inline {
    display: block;
  }
}
.form__field--inline .form__label {
  display: inline-block;
  padding: 0;
  vertical-align: top;
}
@media (min-width: 0px) and (max-width: 960px) {
  .form__field--inline .form__label {
    display: block;
    margin-bottom: 10px;
    padding: 0;
  }
}
.form__field--inline .form__control {
  display: inline-block;
  vertical-align: top;
}

.form__label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  display: block;
  padding-bottom: 3px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .form__label {
    font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    font-weight: 700;
  }
}

.form__control[type=email],
.form__control[type=number],
.form__control[type=password],
.form__control[type=search],
.form__control[type=tel],
.form__control[type=text],
.form__control[type=url],
textarea.form__control {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 2px solid #ccc;
  box-sizing: border-box;
  display: block;
  margin: 0;
  outline: 0;
  padding: 7px 8px 6px;
  height: auto;
  width: auto;
}

::-webkit-input-placeholder {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

:-moz-placeholder {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

::-moz-placeholder {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

:-ms-input-placeholder {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.form__control[type=checkbox] + .form__label {
  display: inline-block;
  margin-left: 5px;
  padding-bottom: 0;
}

input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  border-radius: 5px;
  border: 2px solid #ccc;
  cursor: pointer;
  display: inline-block;
  height: 23px;
  vertical-align: top;
  width: 23px;
}
input[type=checkbox]:after {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  background: transparent;
  color: #8AAD3A;
  content: "✓";
  font-size: 22px;
  position: relative;
  bottom: 0.25rem;
  visibility: hidden;
}
input[type=checkbox]:checked:after {
  visibility: visible;
}
input[type=checkbox]:focus {
  outline: 0;
}

textarea.form__control {
  width: 100%;
}

.form__control__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  padding-top: 5px;
}

.form__control__caption--right {
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
  padding-top: 0;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.form-factor {
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  width: 95px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .form-factor {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    text-align: left;
    width: auto;
  }
}
.form-factor--active .form-factor__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
}
.form-factor--active .form-factor__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
}
.form-factor--active .form-factor__price {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
}
.form-factor--active .form-factor__secondary__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  color: #333;
  display: block;
}
@media (min-width: 0px) and (max-width: 960px) {
  .form-factor__primary {
    padding-left: 30px;
    position: relative;
  }
}
.form-factor__secondary__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  color: #999;
  display: block;
}
.form-factor__icon {
  margin-bottom: 4px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .form-factor__icon {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    height: 100%;
    -ms-flex-pack: center;
        justify-content: center;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
  }
}
.form-factor__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}
.form-factor__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}
.form-factor__price {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.image-button {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
}
.image-button__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  margin: 10px;
  width: 100px;
  height: 30px;
}
.image-button__caption__editable {
  overflow: auto;
  outline: none;
}
.image-button__caption__not-editable {
  text-align: center;
}
.image-button__caption__not-editable__full-width {
  text-align: center;
  width: 100%;
}
.image-button__caption__container {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
.image-button__image-wrapper {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  width: 100px;
  height: 100px;
}
.image-button__image {
  max-width: 100px;
  max-height: 100px;
}
.image-button__image__svg_icon {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
}
.image-button__image__svg_icon__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
  text-align: center;
  margin-top: 5px;
}

.image-button-container {
  width: 300px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.select-menu-dropdown__menuTitle, .select-menu-dropdown__item, .productCell__category, .artist-attribution__name, .artist-attribution__location {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.products-container:before, .artist-attribution__body:before, .artist-attribution:before, .products-container:after, .artist-attribution__body:after, .artist-attribution:after {
  content: " ";
  display: table;
}
.products-container:after, .artist-attribution__body:after, .artist-attribution:after {
  clear: both;
}

.artist-attribution__container {
  display: inline-block;
}

.artist-attribution {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  /* TODO: this was done to center some of the attribution text fields.
     Consider splitting out different classes for left vs center aligned. */
  -ms-flex-pack: center;
      justify-content: center;
}
.artist-attribution--small .artist-attribution__img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-top: 0;
}
.artist-attribution .text {
  margin: 0;
}
.artist-attribution__img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border: 1px solid white;
  border-radius: 50px;
  margin-right: 5px;
  min-width: 50px;
  overflow: hidden;
}
.artist-attribution__img img {
  width: 100%;
  height: 100%;
}
.artist-attribution__body {
  display: inline-block;
}
.artist-attribution__signature {
  width: 130px;
  display: inline-block;
  margin-bottom: 5px;
}
.artist-attribution__location {
  clear: left;
  margin: 0;
  max-width: 165px;
}
.artist-attribution__name {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  margin: 0;
  max-width: 165px;
}
.artist-attribution__name .artist-attribution__name-by {
  margin-right: 5px;
}
.artist-attribution__name a, .artist-attribution__name a:link, .artist-attribution__name a:hover {
  color: #666;
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.media__img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.media__children-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-pack: center;
      justify-content: center;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.modal-dialog.login-overlay {
  z-index: 500;
}
.modal-dialog.login-overlay .modal-dialog__wrapper.login-overlay__wrapper {
  top: 50%;
  max-height: 100%;
}

.modal-dialog {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.modal-dialog__backdrop {
  -ms-flex-align: center;
      align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}
.modal-dialog__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  background-color: white;
  border: 1px solid #ccc;
  margin: 0 auto;
  width: 50%;
  position: relative;
  top: 10%;
  max-height: 100%;
  overflow: auto;
}
@media (min-width: 0px) and (max-width: 599px) {
  .modal-dialog__wrapper {
    box-sizing: border-box;
    height: 100%;
    max-width: 100%;
    top: 0;
    width: 100vw;
  }
}
.modal-dialog__wrapper:focus {
  outline: 0;
}
.modal-dialog__no-scroll {
  max-height: 100%;
  overflow: visible;
}
@media (min-width: 0px) and (max-width: 599px) {
  .modal-dialog__no-scroll {
    overflow: auto;
  }
}
.modal-dialog__content {
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
}
.modal-dialog__content-scroll {
  overflow: auto;
}
.modal-dialog__footer {
  border-top: 1px solid #ccc;
  overflow: hidden;
}
.modal-dialog__header {
  margin-bottom: 10px;
  padding-right: 40px;
  padding-left: 20px;
  padding-top: 20px;
}
.modal-dialog__title {
  margin: 0;
}
.modal-dialog__close {
  background-color: transparent;
  position: absolute;
  right: 0px;
  top: 0px;
  width: auto;
}
.modal-dialog__close:hover {
  background-color: transparent;
}
.modal-dialog__button-bar {
  text-align: right;
  margin-top: 30px;
}
.modal-dialog__button-bar .btn {
  margin-left: 10px;
}
.modal-dialog__button-bar .btn:first-child {
  margin-left: 0;
}

.modal-dialog--narrow .modal-dialog__wrapper {
  min-width: 25rem;
  width: 30%;
}
@media (min-width: 0px) and (max-width: 599px) {
  .modal-dialog--narrow .modal-dialog__wrapper {
    width: 100vw;
    min-width: 0;
  }
}

.modal-dialog--md__wrapper {
  max-height: 70%;
  top: 20%;
}
.modal-dialog--md__title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.modal-dialog--md__footer {
  box-sizing: border-box;
  text-align: right;
  height: 55px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 10px;
  background-color: #f9f9f9;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.nav {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}
.nav--icon {
  margin-top: 10px;
  margin-bottom: 10px;
}
.nav--icon li {
  margin-left: 3px;
  margin-right: 3px;
  padding: 0;
}
.nav--icon li:first-child, .nav--icon li:last-child {
  padding-left: 0;
  padding-right: 0;
}
.nav--bold .nav__item {
  font-size: 1.125rem;
  padding: 5px 20px;
}
.nav--bold .nav__item--active {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  font-size: 1.125rem;
  font-weight: 500;
}
.nav--bold .nav__item--active a, .nav--bold .nav__item--active a:hover {
  color: #333;
  text-decoration: none;
}
.nav--bold .nav__item a {
  color: #666;
}
.nav--center {
  text-align: center;
}
.nav__item {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding: 5px 10px;
}
.nav__item:first-child {
  padding-left: 0;
  padding-right: 10px;
}
.nav__item:last-child {
  padding-left: 10px;
  padding-right: 0;
}
.nav__item.nav__separator {
  border-right: 1px dotted #999;
  padding: 0;
  margin: 0 10px;
  min-height: 22px;
  width: 1px;
}
.nav__item.nav__separator:before, .nav__item.nav__separator:after {
  content: " ";
  display: table;
}
.nav__item.nav__separator:after {
  clear: both;
}
.nav__item a {
  text-decoration: none;
  color: #999;
}
.nav__item a:hover {
  color: #666;
  text-decoration: underline;
}

.nav--tabs,
.nav--tabs-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #666;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  display: block;
  padding: 0;
  margin: auto;
  text-align: center;
  font-weight: 300;
}
.nav--tabs .nav__item,
.nav--tabs-bold .nav__item {
  border-bottom: 3px solid transparent;
  font-size: 0.875rem;
  display: inline-block;
  padding: 25px 0px 20px 0px;
  margin: 0px 20px 0px 20px;
}
.nav--tabs .nav__item:hover,
.nav--tabs-bold .nav__item:hover {
  border-color: rgba(138, 173, 58, 0.5);
  cursor: pointer;
}
.nav--tabs .nav__item:first-child, .nav--tabs .nav__item:last-child,
.nav--tabs-bold .nav__item:first-child,
.nav--tabs-bold .nav__item:last-child {
  padding-left: 0;
  padding-right: 0;
}
.nav--tabs .nav__item:hover,
.nav--tabs-bold .nav__item:hover {
  color: #333;
}
.nav--tabs .nav__item.nav__item--active,
.nav--tabs-bold .nav__item.nav__item--active {
  border-color: #8AAD3A;
  color: #333;
  font-weight: 700;
}

.nav--tabs-bold {
  text-transform: none;
}
.nav--tabs-bold .nav__item {
  font-size: 1.125rem;
  padding: 10px 5px;
}

.nav--caps {
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.nav--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}
.nav--caption > li {
  color: #666;
}
.nav--caption > li.nav__label {
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: none;
}
.nav--caption > li a:link {
  color: #666;
}

.nav--graywell {
  background-color: #fff;
  margin: 0;
  padding: 0;
}
.nav--graywell .nav__item {
  padding: 0 0 15px 0;
  margin: 0;
  cursor: pointer;
}
.nav--graywell .nav__item--active.nav__item--pointer::before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #eee;
}
.nav--graywell .nav__item--active.nav__item--pointer::after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: -1px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f9f9f9;
}

.off-canvas {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  overflow: hidden;
  height: 100px;
  margin-top: -100px;
  transition: margin-top 0.8s ease-in-out;
}

.off-canvas__content {
  position: relative;
  width: 100%;
}

.off-canvas.off-canvas--open {
  margin-top: 0px;
}

.off-canvas__close {
  cursor: pointer;
  padding: 5px;
  position: absolute;
  right: 0;
  top: 0;
}

.off-canvas--notification {
  height: 50px;
  margin-top: -50px;
}

.off-canvas--banner {
  height: 300px;
  margin-top: -220px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.product {
  height: auto;
  padding: 0;
  text-align: center;
}
.product--cp {
  width: 215px;
}
.product--pd {
  width: 473px;
}
.product--th {
  width: 80px;
}
.product--md {
  width: 215px;
}
.product__flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  text-align: left;
}
.product__details {
  margin-left: 35px;
}
.product__details .artist-attribution {
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding-bottom: 5px;
}
.product .artist-attribution {
  margin: 5px 0 10px;
}
.product .artist-attribution__name {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}
.product .artist-attribution__body {
  float: none;
}
.product__rationale {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  color: #86504c;
  margin: 10px 0 5px;
}
.product__favorite-button {
  margin-top: 5px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.select-menu-dropdown__menuTitle, .select-menu-dropdown__item, .productCell__category, .artist-attribution__location, .artist-attribution__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.productCell {
  display: inline-block;
  text-align: center;
  padding-bottom: 5px;
  padding-top: 5px;
  border: 1px solid #fff;
}
.productCell:hover .productCell__caption {
  visibility: initial;
}
@media (min-width: 961px) {
  .productCell {
    width: 235px;
  }
  .productCell:hover {
    border: 1px solid #ccc;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .productCell {
    width: 235px;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell {
    width: 150px;
  }
}
.productCell__captionAndImages {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: end;
      align-items: flex-end;
  -webkit-align-items: flex-end;
}
.productCell__captionAndImages--landscape .productCell__caption--envelope-hero, .productCell__captionAndImages--square .productCell__caption--envelope-hero {
  top: -10px;
}
@media (min-width: 961px) {
  .productCell__captionAndImages {
    height: 240px;
  }
  .productCell__captionAndImages--2-up {
    height: 28rem;
    margin: 0 auto;
    width: 27rem;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .productCell__captionAndImages {
    height: 220px;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__captionAndImages {
    height: 150px;
  }
}
.productCell__caption {
  transition: opacity 0.4s ease-in-out;
  padding-bottom: 5px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  position: relative;
  top: 0;
  visibility: hidden;
  /* set to make ellipsis same color as body */
  color: #999;
}
@media (min-width: 961px) {
  .productCell__caption {
    width: 190px;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .productCell__caption {
    width: 190px;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__caption {
    width: 140px;
  }
}
.productCell__caption--outer {
  position: relative;
  margin-bottom: -8px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__caption--outer {
    display: none;
  }
}
.productCell__caption--outer--2-up {
  height: 15rem;
}
.productCell__caption--wrapper {
  height: 33px; /* Fallback for non-webkit */
}
.productCell__caption--inner {
  max-height: 33px; /* Fallback for non-webkit */
  position: relative;
  bottom: 0;
}
.productCell__caption--title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  font-weight: 700;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.5;
  display: inline;
}
.productCell__caption--hyphen {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  padding: 0 4px;
  display: inline;
}
.productCell__caption--body {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  display: inline;
  padding-left: 0.3125rem;
}
.productCell__merchLine {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  text-transform: lowercase;
  color: #86504c;
  padding: 5px 0;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__merchLine {
    display: none;
  }
}
.productCell__shareFavLine {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  font-weight: 300;
  color: #ccc;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
  /* need links green, but separators (|) gray */
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__shareFavLine {
    font-size: 0.75rem;
    padding-bottom: 0;
  }
}
.productCell__shareFavLine a {
  color: #8AAD3A;
}
.productCell__shareFavLine .icon--heart {
  margin: 0;
}
@media (min-width: 961px) {
  .productCell__shareFavLine a:hover {
    color: #6c872d;
    text-decoration: underline;
  }
}
.productCell__orderSample, .productCell__shareRemoveFav {
  display: inline-block;
  padding-top: 0.3125rem;
}
.productCell__shareRemoveFav--mobile {
  display: none;
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__shareRemoveFav--mobile {
    display: initial;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__shareRemoveFav--desktop {
    display: none;
  }
}
.productCell__colorPicker .color-picker {
  overflow: visible;
}
.productCell__colorPicker .color-picker .color-picker__item {
  margin-bottom: 0;
}
.productCell__colorPicker .color-picker .color-picker__item:hover {
  box-shadow: inset 0 0 0 1px #999;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__colorPicker .color-picker .color-picker__item {
    pointer-events: none;
    cursor: default;
  }
  .productCell__colorPicker .color-picker .color-picker__item:hover {
    box-shadow: none;
  }
}
.productCell__colorPicker .color-picker__color-name {
  display: none;
}
.productCell__colorPicker .color-picker__item {
  padding: 1px;
}
.productCell__colorPicker .color-picker__item--active {
  box-shadow: inset 0 0 0 1px #666;
}
.productCell__colorPicker .color-picker__item--active .color-swatch {
  border: 1px solid #ccc;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__colorPicker .color-picker__item--active {
    box-shadow: none;
  }
  .productCell__colorPicker .color-picker__item--active .color-swatch {
    border: 1px solid #ccc;
  }
}
.productCell__colorPicker .color-swatch {
  margin: 1px;
  width: 15px;
  height: 15px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__colorPicker .color-swatch {
    width: 10px;
    height: 10px;
  }
}
.productCell__badge {
  padding-top: 5px;
  padding-bottom: 3px;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
}
.productCell__badge img {
  max-width: 100%;
}
.productCell__cycler {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -webkit-align-items: flex-end;
}
.productCell__cycler--image {
  max-width: 206px;
  max-height: 206px;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
}
.productCell__cycler--image--container {
  position: absolute;
  min-width: 158px;
  min-height: 158px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -ms-transform: translate(-50%, -100%);
}
@media (min-width: 961px) {
  .productCell__cycler--image--container--2-up {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-align: center;
        align-items: center;
    -webkit-align-items: center;
    height: 27rem;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__cycler--image--container {
    position: relative;
    -webkit-transform: none;
            transform: none;
    min-width: initial;
    min-height: initial;
  }
}
.productCell__cycler--image.current-image {
  opacity: 1;
}
.productCell__cycler--image.shadow {
  box-shadow: 0 0 1px 2px #eee;
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__cycler--image {
    max-width: 9.375rem;
    max-height: 9.375rem;
  }
}
.productCell__cycler .fade-appear {
  opacity: 0.01;
}
.productCell__cycler .fade-appear.fade-appear-active {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
@media (min-width: 600px) and (max-width: 960px) {
  .productCell__cycler {
    width: 206px;
    display: block;
  }
}
@media (min-width: 961px) {
  .productCell__img-size--2-up {
    max-height: 24.75rem;
    max-width: 24.75rem;
  }
}
@media (min-width: 961px) {
  .productCell__img-size--3-up {
    max-height: 16rem;
    max-width: 16rem;
  }
}
@media (min-width: 961px) {
  .productCell__img-size--4-up {
    max-height: 206px;
    max-width: 206px;
  }
}
.productCell__favorite--mobile {
  float: left;
  clear: left;
  width: 100%;
  height: 1.43rem;
}
@media (min-width: 961px) {
  .productCell__favorite--mobile {
    display: none;
  }
}
.productCell__favorite--mobile .svg-wrapper .icon {
  margin: 0;
}
.productCell__favoriteWithShareContainer--mobile {
  float: left;
  clear: left;
  width: 50%;
  height: 1.43rem;
}
@media (min-width: 961px) {
  .productCell__favoriteWithShareContainer--mobile {
    display: none;
  }
}
.productCell__favoriteWithShareContainer--mobile .svg-wrapper .icon {
  margin: 0.3125rem 0rem 0rem 3.125rem;
}
.productCell__shareContainer--mobile {
  float: right;
  clear: right;
  width: 50%;
  height: 23px;
}
@media (min-width: 961px) {
  .productCell__shareContainer--mobile {
    display: none;
  }
}
.productCell__shareContainer--mobile .svg-wrapper .icon {
  margin: 0rem 3.125rem 0.125rem 0;
}
.productCell__interactions {
  width: 12.5rem;
  margin: 0 auto;
  padding-top: 0.625rem;
  padding-bottom: 1rem;
}
.productCell__interactions--container {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__interactions {
    display: none;
  }
}
.productCell__interactions--noQuicklook {
  width: 12.5rem;
  margin: 0 auto;
  padding-top: 0.625rem;
  padding-bottom: 1rem;
}
.productCell__interactions--noQuicklook--container {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  width: 100%;
  padding: 0.3125rem 0;
  border-bottom: 1px solid #ccc;
}
.productCell__interactions--noQuicklook--container .productCell__favorite {
  margin-left: auto;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__interactions--noQuicklook {
    display: none;
  }
}
.productCell__interactions--2-up {
  width: 24.75rem;
  padding-top: 0rem;
}
.productCell__quicklook {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  text-transform: uppercase;
  color: #8AAD3A;
  font-size: 0.75rem;
  line-height: 12px;
  cursor: pointer;
}
.productCell__quicklook:hover {
  text-decoration: underline;
  color: #6c872d;
}
.productCell .productCell__designName {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
  max-height: 2.6rem; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  text-align: center;
  font-weight: 300;
  color: #333;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
}
.productCell .productCell__designName:hover {
  color: #333;
  text-decoration: underline;
}
.productCell__category {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  color: #666;
  display: inline-block;
  text-transform: none;
  padding: 0 15px;
}
.productCell .artist-attribution__body {
  max-width: 160px;
  text-align: left;
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell .artist-attribution__body {
    max-width: 90px;
  }
}
.productCell .productCell__artistName {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  font-weight: 300;
  padding: 5px 0;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell .productCell__artistName {
    display: none;
  }
}
@media (min-width: 961px) {
  .productCell .productCell__artistName:hover {
    color: #333;
    text-decoration: underline;
  }
}
.productCell .productCell__artistName--mobile {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  font-weight: 300;
  padding: 5px 0;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
}
@media (min-width: 961px) {
  .productCell .productCell__artistName--mobile {
    display: none;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell .productCell__artistName--mobile {
    font-size: 0.75rem;
    line-height: 12px;
  }
}
.productCell.product-feed {
  width: 170px;
  border: none;
  padding-left: 10px;
  padding-right: 10px;
}
.productCell.product-feed .productCell__cycler {
  -ms-flex-align: start;
      align-items: flex-start;
  -webkit-align-items: flex-start;
  width: 100%;
}
.productCell.product-feed .productCell__cycler--image--container {
  width: 100%;
  top: 0;
  position: relative;
  -webkit-transform: none;
          transform: none;
  min-height: initial;
}
.productCell.product-feed .productCell__cycler--image {
  width: 100%;
  max-width: none;
  max-height: none;
}
.productCell.product-feed .productCell__bottomHalf {
  text-align: left;
  padding-left: 6px;
}
.productCell.product-feed .productCell__bottomHalf .productCell__designName, .productCell.product-feed .productCell__bottomHalf .productCell__category {
  text-align: left;
  padding: 0;
  max-width: 155px;
}
.productCell.product-feed .artist-attribution {
  padding-top: 5px;
}
.productCell.product-feed .artist-attribution__img {
  width: 28px;
  height: 28px;
  min-width: 28px;
}
.productCell.product-feed .artist-attribution__body {
  max-width: 165px;
}
.productCell.product-feed .artist-attribution__location {
  font-size: 11px;
}
.productCell.product-feed .artist-attribution__name {
  font-size: 13px;
}
.productCell.product-feed .productCell__titles {
  padding-bottom: 0.625rem;
}
.productCell.product-feed .productCell__titles--main {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  font-weight: 300;
  padding-bottom: 0.5rem;
}
.productCell.product-feed .productCell__titles--secondary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 961px) {
  .productCell--2-up {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-direction: column;
        flex-direction: column;
    width: 29rem;
    height: 39rem;
  }
  .productCell--2-up__bottomHalf {
    margin-left: 2rem;
    max-width: 60%;
    text-align: left;
  }
}
.productCell__titleAndColorWay--2-up {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  width: 100%;
  text-align: left;
}
@media (min-width: 600px) and (max-width: 960px) {
  .productCell__titleAndColorWay--2-up {
    width: 206px;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__titleAndColorWay--2-up {
    width: 150px;
  }
}
.productCell__titleAndColorWay--2-up .productCell--2-up__designName {
  text-align: left;
}
@media (min-width: 961px) {
  .productCell__titleAndColorWay--2-up .productCell--2-up__designName {
    margin-left: 2rem;
    max-width: 55%;
  }
}
.productCell__titleAndColorWay--2-up .productCell__colorPicker {
  text-align: left;
}
@media (min-width: 961px) {
  .productCell__titleAndColorWay--2-up .productCell__colorPicker {
    margin-right: 2rem;
    max-width: 36%;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__titleAndColorWay--2-up .productCell__colorPicker {
    max-width: 69px;
  }
}

.productCell--3-up {
  padding-bottom: 1.5625rem;
  padding-top: 2.5rem;
}
@media (min-width: 961px) {
  .productCell--3-up {
    width: 19.125rem;
  }
}

.products-container:before, .artist-attribution:before, .artist-attribution__body:before, .products-container:after, .artist-attribution:after, .artist-attribution__body:after {
  content: " ";
  display: table;
}
.products-container:after, .artist-attribution:after, .artist-attribution__body:after {
  clear: both;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.promo-bar {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  text-align: center;
}
.promo-bar a {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.radio-button {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}
.radio-button__list {
  position: relative;
}
.radio-button__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 2%;
  padding-bottom: 2%;
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__item {
    padding: 0;
  }
}
.radio-button__item:first-child {
  padding-top: 0;
}
.radio-button__item:last-child {
  padding-bottom: 0;
}
.radio-button__item--soft-disabled {
  opacity: 0.5;
  cursor: default;
}
.radio-button__input {
  vertical-align: top;
  margin-right: 2%;
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__input {
    display: none;
  }
}
.radio-button__input--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.radio-button__description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.radio-button__label {
  width: 100%;
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__label {
    border: 1px solid #ccc;
    padding: 10px 10px;
    margin-bottom: 2%;
    background-color: #fff;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__label--selected {
    border: 1px solid #666;
  }
}
.radio-button__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  margin-top: 0;
}
.radio-button__caption--selected {
  color: #666;
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__caption .truncated-text__text--body {
    display: none;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__caption .truncated-text__more-link {
    display: none;
  }
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.responsive-carousel {
  padding: 0 20px;
}
@media (min-width: 961px) {
  .responsive-carousel.flickity-enabled.is-draggable .flickity-viewport {
    cursor: default;
  }
}
.responsive-carousel.image-border .responsive-image__src {
  border: 1px solid transparent;
}
.responsive-carousel.image-border .is-selected .responsive-image__src {
  border: 1px solid #666;
}
.responsive-carousel .flickity-prev-next-button {
  background: none;
}
.responsive-carousel .flickity-prev-next-button:focus {
  box-shadow: none;
}
.responsive-carousel .flickity-prev-next-button:hover {
  background: none;
}
.responsive-carousel .flickity-prev-next-button.previous {
  left: auto;
  right: 100%;
  margin-right: -20px;
}
.responsive-carousel .flickity-prev-next-button.previous svg {
  left: auto;
  right: 0;
}
.responsive-carousel .flickity-prev-next-button.next {
  right: auto;
  left: 100%;
  margin-left: -20px;
}
.responsive-carousel .flickity-prev-next-button.next svg {
  left: 0;
  right: auto;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.latest.searchable-dropdown input::-webkit-calendar-picker-indicator {
  height: 20px;
  width: 12px;
  margin: 0;
  padding: 0;
  opacity: 0;
}
.latest.searchable-dropdown__control {
  position: relative;
}
.latest.searchable-dropdown__box {
  background-color: white;
  border-color: #ccc;
  border-style: solid;
  border-width: 2px;
  box-sizing: border-box;
  cursor: pointer;
  padding: 8px 8px;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8rem;
  position: relative;
  margin-bottom: 0;
  width: 80%; /* Fallback for old browser */
  width: calc(100% - 86px); /* Firefox */ /* WebKit */
  width: -o-calc(100% - 86px); /* Opera */
  float: none;
  margin-right: 15px;
  height: 32px;
}
.latest.searchable-dropdown__box--full {
  width: 100%;
}
.latest.searchable-dropdown__box--error {
  border-color: #FF0000;
}
.latest.searchable-dropdown__arrow {
  display: inline-block;
  position: absolute;
  right: 95px;
  top: 10px;
  cursor: pointer;
  pointer-events: none;
}
.latest.searchable-dropdown__arrow--full {
  right: 10px;
  top: 10px;
}
.latest.searchable-dropdown__button {
  vertical-align: top;
  height: 32px;
  line-height: 32px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.select-menu-dropdown__menuTitle, .select-menu-dropdown__item, .artist-attribution__location, .artist-attribution__name, .productCell__category {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.select-menu-dropdown {
  position: relative;
  margin-bottom: 0;
  display: inline-block;
  width: 250px;
}
.select-menu-dropdown__arrow {
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 15px;
}
.select-menu-dropdown__control {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 3px solid transparent;
  display: inline-block;
  padding: 15px 0px 10px 0px;
  margin: 0px 20px;
  border-color: #8AAD3A;
  color: #333;
  position: relative;
  width: 100%;
}
.select-menu-dropdown__control:hover {
  border-color: rgba(138, 173, 58, 0.5);
  cursor: pointer;
}
.select-menu-dropdown__item {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  display: inline-block;
  color: #333;
  position: relative;
  width: 100%;
  padding: 15px 10px;
  border-left: 3px solid transparent;
}
.select-menu-dropdown__item:hover {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  border-color: #8AAD3A;
  cursor: pointer;
  background-color: #eee;
}
.select-menu-dropdown__items {
  width: 100%;
  background-color: #fff;
}
.select-menu-dropdown__menuTitle {
  width: 90%;
  text-align: center;
}
.select-menu-dropdown .tooltip__body {
  /* The max-width is hard-coded here to ensure the tooltip items don't
   * extend passed the parent container. Feel free to overwrite this for
   * other use cases.
   * max-width = select-menu-dropdown.width - (item.padding + item.border)
   */
  max-width: 227px;
  text-align: left;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

@media (min-width: 0px) and (max-width: 960px) {
  .shape-picker {
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    white-space: nowrap;
  }
}
.shape-picker__list {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.shape-picker__item {
  background-repeat: no-repeat;
  display: inline-block;
  line-height: inherit;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 2px;
  position: relative;
  vertical-align: top;
}
.shape-picker__item:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 2px #666;
}
.shape-picker__item:last-child {
  margin-right: 0;
}
.shape-picker__item--active {
  box-shadow: inset 0 0 0 2px black;
}
.shape-picker__item--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.shape-picker__image {
  padding: 1px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.shareableArtwork {
  margin: 0 auto 0px auto;
  max-width: 100%;
  position: relative;
  text-align: center;
  /*  TODO: In the future when we want to put pinterest
    button in other location, we should move common css
    out of this css class*/
}
.shareableArtwork:hover .artwork__overlay {
  z-index: 1;
  opacity: 1;
}
.shareableArtwork__overlay {
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
@media (min-width: 0px) and (max-width: 599px) {
  .shareableArtwork__overlay {
    display: none;
  }
}
.shareableArtwork__overlay-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
  padding-top: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.shareableArtwork__overlay .share-container {
  padding-top: 5px;
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.shareableArtwork__overlay-btn {
  background-color: rgba(255, 255, 255, 0);
  margin-top: 20px;
}
@media (min-width: 961px) {
  .shareableArtwork__overlay-btn {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.shareableArtwork__overlay-btn:hover {
  background-color: #6c872d;
}
.shareableArtwork__overlay-btn-container {
  width: 70%;
}
@media (min-width: 961px) {
  .shareableArtwork__overlay-btn-container {
    width: 100%;
  }
}
.shareableArtwork__overlay-btn-container .white-btn-text {
  color: #fff;
}
.shareableArtwork__overlay-attribution {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 0px) and (max-width: 599px) {
  .shareableArtwork__overlay-attribution {
    display: none;
  }
}
.shareableArtwork .pinterest__button__topleft {
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  pointer-events: none;
}
@media (min-width: 0px) and (max-width: 599px) {
  .shareableArtwork .pinterest__button__topleft {
    display: none;
  }
}
.shareableArtwork .pinterest__button__topleft .share-container {
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0px;
  left: 0px;
}
.shareableArtwork .pinterest__button__topleft .share-container .trigger {
  width: 0px;
  height: 0px;
  padding-top: 0;
  border-style: solid;
  border-width: 45px 45px 0px 0px;
  border-color: white transparent transparent transparent;
  position: absolute;
  top: 0px;
  left: 0px;
}
.shareableArtwork .pinterest__button__topleft .share-container .trigger .icon--pinterest-round {
  position: absolute;
  top: -46px;
  left: 0px;
  pointer-events: auto;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.share-container__child {
  padding: 4px;
}
.share-container__child:hover {
  cursor: pointer;
}
.share-container__child--bordered {
  border-right: 1px solid #999;
  padding-right: 8px;
  margin-right: 4px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .share-container__child {
    margin: 0 6px;
    padding: 4px 0;
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .share-container .share-container__add-button {
    display: none;
  }
}

.slick-carousel {
  margin: 0 auto;
  padding: 20px 40px;
  width: 80%;
  overflow: hidden;
}
.slick-carousel .slick-initialized .slick-slide {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
}
.slick-carousel .slide {
  max-width: 100%;
  height: auto;
}
.slick-carousel .slick-arrow {
  height: 100%;
}
.slick-carousel .slick-arrow .svg-wrapper {
  position: relative;
  top: 50%;
  padding: 0px 3px;
}
.slick-carousel .slick-prev, .slick-carousel .slick-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
}
.slick-carousel .slick-prev {
  left: -40px;
}
.slick-carousel .slick-next {
  right: -40px;
}
.slick-carousel .slick-arrow.slick-disabled {
  display: none !important;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.minted-loader {
  position: relative;
  width: 70px;
  height: 70px;
}

.minted-loader div {
  position: absolute;
  top: 0;
  left: 0;
}

.minted-loader .bkgd {
  width: 68px;
  height: 68px;
  background-color: #fff;
  border-radius: 45px;
  border: solid 1px rgba(0, 0, 0, 0.08);
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.minted-loader .spinner {
  width: 70px;
  height: 70px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: spin 1.1s infinite linear;
  animation: spin 1.1s infinite linear;
}

.minted-loader svg {
  display: block;
}

.spinner-loading-message {
  color: #666;
  white-space: nowrap;
  padding-top: 10px;
}

.spinner-scrim {
  left: 0;
  top: 0;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9998;
}

.spinner-scrim-center {
  z-index: 9999;
  position: fixed;
  left: 50%;
  right: 50%;
  top: 50%;
  bottom: 50%;
}

.spinner-scrim-x {
  cursor: pointer;
  cursor: hand;
  z-index: 9999;
  position: fixed;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 40px;
}

.sticky--fixed .sticky__placeholder {
  display: block;
  visibility: hidden;
}
.sticky--fixed .sticky__content {
  position: fixed;
  top: 0;
  left: 0;
}
.sticky--disabled .sticky__placeholder {
  display: none;
}
.sticky--disabled .sticky__content {
  position: relative;
}
.sticky__placeholder {
  display: none;
}
.sticky__content {
  width: 100%;
  position: relative;
  z-index: 100;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.swatch-picker {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  position: relative;
}
.swatch-picker__list {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.swatch-picker__item {
  background-repeat: no-repeat;
  border: none;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px;
  margin-right: 1px;
}
.swatch-picker__item:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 2px #666;
}
.swatch-picker__item:last-child {
  margin-right: 0;
}
.swatch-picker__item--active {
  box-shadow: inset 0 0 0 2px black;
}
.swatch-picker__item--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.swatch-picker__item--soft-disabled {
  opacity: 0.5;
  cursor: default;
}
.swatch-picker__item--square {
  border-radius: 0;
}
.swatch-picker__item--round {
  border-radius: 50%;
}
.swatch-picker__item__overlay {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: #666;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 10 10'> <path d='M10 0 L0 10' stroke='#ccc' stroke-width='0.2'/></svg>");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%, auto;
  font-size: 0.35rem;
}
@media (min-width: 0px) and (max-width: 599px) {
  .swatch-picker__item__overlay {
    font-size: 0.625rem;
  }
}
.swatch-picker__swatch-name {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  margin-top: 5px;
}
.swatch-picker__swatch {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  margin: 2px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 599px) {
  .swatch-picker__swatch {
    width: 40px;
    height: 40px;
  }
}
.swatch-picker__swatch--square {
  border-radius: 0;
}
.swatch-picker__swatch--round {
  border-radius: 50%;
}

.swatch-picker__swatch.swatch-picker__swatch--image {
  width: auto;
  height: auto;
  border: 0;
  padding: 1px;
}
.swatch-picker__swatch.swatch-picker__swatch--image img {
  display: block;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.title-wrapper {
  padding-bottom: 1em;
}
.title-wrapper .title-wrapper__title, .title-wrapper .title-wrapper__sub-title {
  padding-right: 1rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.toggle-box-list {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 0px) and (max-width: 960px) {
  .toggle-box-list {
    font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.375;
    text-transform: none;
  }
}
.toggle-box-list__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  -ms-flex: 25%;
      flex: 25%;
  background-color: #fff;
  border: 2px solid #ccc;
  padding: 7px 5px 5px 5px;
  margin: 0 0 -2px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .toggle-box-list__item {
    padding-bottom: 12px;
    padding-top: 13px;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .toggle-box-list__item {
    padding: 7px 10px;
  }
}
.toggle-box-list__item:hover {
  z-index: 1;
  border-color: #666;
  color: #666;
  cursor: pointer;
}
.toggle-box-list__item:not(first-child) {
  margin-left: -2px;
}
.toggle-box-list__item--active {
  z-index: 1;
  font-weight: 700;
  border-color: #666;
  color: #666;
}
.toggle-box-list__item--disabled {
  opacity: 0.5;
  cursor: default;
  border-color: #666;
  color: #666;
  opacity: 0.25;
}
.toggle-box-list__item--hard-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.toggle-box-list--inline {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.toggle-box-list__item:nth-last-child(n+4):not(.toggle-box-list__item--inline), .toggle-box-list__item:nth-last-child(n+4):not(.toggle-box-list__item--inline) ~ .toggle-box-list__item:not(.toggle-box-list__item--inline) {
  -ms-flex: 44%;
      flex: 44%;
}
.toggle-box-list__item--inline {
  -ms-flex: none;
      flex: none;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.tooltip {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Arial", "Helvetica", "sans-serif";
  font-style: normal;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  z-index: 1070;
}
.tooltip__body {
  max-width: 200px;
  background-color: #fff;
}
.tooltip__body--plum {
  background-color: #86504c;
  color: #fff;
}
.tooltip--closeable .tooltip__body {
  padding: 20px;
}
.tooltip__arrow {
  position: absolute;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -1;
  background-color: white;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}
.tooltip__arrow--plum {
  background-color: #86504c;
}
.tooltip--top {
  margin-top: -5px;
}
.tooltip--top .tooltip__arrow {
  bottom: -5px;
  left: 50%;
  margin-left: -5px;
}
.tooltip--right {
  margin-left: 5px;
}
.tooltip--right .tooltip__arrow {
  top: 50%;
  left: -5px;
  margin-top: -5px;
}
.tooltip--bottom {
  margin-top: 5px;
}
.tooltip--bottom .tooltip__arrow {
  top: -5px;
  left: 50%;
  margin-left: -5px;
}
.tooltip--left {
  margin-left: -5px;
}
.tooltip--left .tooltip__arrow {
  top: 50%;
  right: -5px;
  margin-top: -5px;
}
.tooltip .tooltip__close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}

.tooltip-enter {
  opacity: 0.01;
}

.tooltip-enter.tooltip-enter-active {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

.tooltip-leave {
  opacity: 1;
}

.tooltip-leave.tooltip-leave-active {
  opacity: 0.01;
  transition: opacity 0.5s ease-in;
}

.trigger {
  display: inline-block;
  cursor: pointer;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.truncated-text__text {
  display: block;
  overflow: hidden;
  position: relative;
  transition: height 0.5s ease-out;
  height: auto;
  width: 100%;
}
.truncated-text__text-enter {
  transition: opacity 0.5s ease-out;
  opacity: 0;
}
.truncated-text__text-enter-active {
  opacity: 1;
}
.truncated-text__text-leave {
  transition: opacity 0.5s ease-out;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.truncated-text__text-leave-active {
  opacity: 0;
}
.truncated-text__text--title {
  font-weight: bold;
}
.truncated-text__more-link {
  color: #8AAD3A;
  text-decoration: none;
}
.truncated-text__more-link:hover {
  color: #6c872d;
  text-decoration: underline;
  cursor: pointer;
}
.truncated-text__more-link:active {
  color: #5c7427;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.artist-attribution__location, .artist-attribution__name, .productCell__category, .select-menu-dropdown__item, .select-menu-dropdown__menuTitle {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-attribution:before, .artist-attribution__body:before, .products-container:before, .artist-attribution:after, .artist-attribution__body:after, .products-container:after {
  content: " ";
  display: table;
}
.artist-attribution:after, .artist-attribution__body:after, .products-container:after {
  clear: both;
}

.artist-attribution__container {
  display: inline-block;
}

.artist-attribution {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  /* TODO: this was done to center some of the attribution text fields.
     Consider splitting out different classes for left vs center aligned. */
  -ms-flex-pack: center;
      justify-content: center;
}
.artist-attribution--small .artist-attribution__img {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  margin-top: 0;
}
.artist-attribution .text {
  margin: 0;
}
.artist-attribution__img {
  width: 3.125rem;
  height: 3.125rem;
  display: inline-block;
  border: 1px solid white;
  border-radius: 3.125rem;
  margin-right: 0.3125rem;
  min-width: 3.125rem;
  overflow: hidden;
}
.artist-attribution__img img {
  width: 100%;
  height: 100%;
}
.artist-attribution__body {
  display: inline-block;
}
.artist-attribution__signature {
  width: 8.125rem;
  display: inline-block;
  margin-bottom: 0.3125rem;
}
.artist-attribution__location {
  clear: left;
  margin: 0;
  max-width: 10.3125rem;
}
.artist-attribution__name {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  margin: 0;
  max-width: 10.3125rem;
}
.artist-attribution__name .artist-attribution__name-by {
  margin-right: 0.3125rem;
}
.artist-attribution__name a, .artist-attribution__name a:link, .artist-attribution__name a:hover {
  color: #666;
}

.responsive-image--product div.responsive-image__src {
  width: 100%;
  height: 0;
  padding-bottom: 66.4305949008%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.responsive-image--center-nocrop div.responsive-image__src {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.responsive-image--center-crop div.responsive-image__src {
  background-position: center;
  background-size: cover;
}
.responsive-image--zoom.responsive-image img.responsive-image__src {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: auto;
}
.responsive-image img.responsive-image__src {
  width: 100%;
  height: auto;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.artwork {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
  margin: 0 auto 0 auto;
  max-width: 100%;
  position: relative;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artwork {
    cursor: pointer;
  }
}
.artwork:hover .artwork__overlay {
  opacity: 1;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artwork:hover .artwork__overlay {
    display: none;
  }
}
.artwork:hover .artwork__zoom {
  display: block;
}
.artwork__buy-link {
  display: block;
}
.artwork__imgwrap {
  margin-bottom: 1.25rem;
  position: relative;
}
.artwork__overlay {
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  max-width: 100%;
  opacity: 0;
  position: absolute;
  transition: opacity 0.1s ease-out;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artwork__overlay {
    display: none;
  }
}
.artwork__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  margin: 0 0 0.3125rem 0;
  padding-left: 0;
  display: block;
  text-align: center;
}
.artwork__title:link {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}
.artwork__title:hover {
  color: #666;
}
.artwork__price-range {
  line-height: 0.2;
  margin-top: 0.625rem;
}
.artwork__share-container {
  margin-top: 0.625rem;
}
.artwork__category {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  color: #666;
  text-transform: none;
  margin: 0.3125rem 0;
  text-align: center;
}

.artwork__buy-button.btn {
  display: inline;
}
.artwork__buy-button.btn:before, .artwork__buy-button.btn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.artwork__zoom {
  background-color: #fff;
  border: 1px solid #eee;
  height: 12.5rem;
  left: -3.75rem;
  position: absolute;
  top: -7.5rem;
  white-space: nowrap;
  width: 12.5rem;
  z-index: 1;
  display: none;
}
.artwork__zoom > * {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: relative;
}
.artwork__zoom img {
  max-height: 11.25rem;
  max-width: 11.25rem;
}

.artwork__store-link {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  font-size: 0.75rem;
  line-height: 1.3;
}
.artwork__store-link:link, .artwork__store-link:hover {
  color: #333;
}
.artwork__store-link span {
  display: block;
  color: #333;
}

.artwork__count {
  font-size: 1.75rem;
}

.artwork--cp {
  width: 13.4375rem;
  height: auto;
  margin: 0 auto;
}
.artwork--cp .artwork__img {
  height: auto;
  width: 13.4375rem;
  display: block;
}
.artwork--cp .artwork__img img {
  max-width: 12.3625rem;
  max-height: none;
  margin-bottom: 0.625rem;
}

.artwork--th {
  display: table;
  border: 1px solid #eee;
  width: 5rem;
  height: 5rem;
}
.artwork--th .artwork__imgwrap {
  display: table-cell;
  margin: 0;
}
.artwork--th .artwork__img img {
  display: block;
  margin: 0 auto;
  max-width: 4.6rem;
  max-height: 4.6rem;
}
.artwork--th .artwork__img-count-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.artwork--pd {
  width: 29.5625rem;
}
.artwork--pd .artwork__img {
  width: 29.5625rem;
}
.artwork--pd .artwork__img img {
  max-width: 27.1975rem;
  margin-bottom: 0.625rem;
}

.artwork--md {
  width: 11.25rem;
  height: auto;
  margin: 0;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artwork--md {
    width: 6.25rem;
  }
}
.artwork--md .artwork__img {
  width: 11.25rem;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artwork--md .artwork__img {
    width: 6.25rem;
  }
}
.artwork--md .artwork__img img {
  max-width: 100%;
  margin-bottom: 0.625rem;
}

.artwork--sm {
  width: 6.875rem;
  height: auto;
  margin: 0;
}
.artwork--sm .artwork__imgwrap {
  width: 6.875rem;
}
.artwork--sm .artwork__img {
  width: 6.875rem;
}
.artwork--sm .artwork__img img {
  max-width: 6.325rem;
  margin-bottom: 0.625rem;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.photo-upload-button-group {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  -ms-flex-direction: row;
      flex-direction: row;
}
.photo-upload-button-group .photo-upload-button {
  margin-right: 0.125rem;
  margin-left: 0.125rem;
}

.photo-upload-button {
  position: relative;
  display: inline-block;
  width: 100%;
  background: #ccc;
  cursor: pointer;
}
.photo-upload-button__image {
  width: 100%;
  position: relative;
  height: 6.25rem;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
}
.photo-upload-button__image img {
  max-width: 100%;
  max-height: 100%;
}
.photo-upload-button__no-image {
  text-align: center;
  width: 100%;
  height: 6.25rem;
  background-color: #ccc;
  position: relative;
}
.photo-upload-button__plus {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
  font-size: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  width: 100%;
}
.photo-upload-button__upload-photo-text {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  color: #fff;
  display: inline-block;
  width: 100%;
}
.photo-upload-button__file-upload {
  width: 100%;
  height: 2.1875rem;
  opacity: 0;
  overflow: hidden;
}
.photo-upload-button__hover-button-container {
  position: absolute;
  z-index: 2;
  width: 50%;
  height: 6.25rem;
  opacity: 0;
  left: 25%;
}
.photo-upload-button__hover-button-container:hover {
  opacity: 1;
}
.photo-upload-button__hover-button {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.photo-upload-button__hover-button a {
  position: absolute;
}
.photo-upload-button__hover-button input {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.photo-upload-button__caption {
  position: absolute;
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  width: 100%;
  height: 1.875rem;
  margin-top: 0.625rem;
}
.photo-upload-button__caption__editable {
  overflow: auto;
  outline: none;
}
.photo-upload-button__caption__not-editable {
  text-align: center;
}

.product-detail-header .product-info h1 {
  float: none;
  border: 0;
  color: inherit;
  line-height: inherit;
  width: auto;
}

.product-info__product-title {
  border: 0;
  color: inherit;
  display: block;
  float: none;
  font-size: 1.5rem;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
  position: static;
  text-transform: none;
  width: auto;
}
.product-info__product-family {
  border: 0;
  display: block;
  float: none;
  font-weight: inherit;
  line-height: 1.3;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
  position: static;
  width: auto;
}

h1.text--secondary {
  border-bottom: 0;
  color: inherit;
  display: block;
  float: none;
  font-size: 1.5rem;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
  position: static;
  text-transform: none;
  width: auto;
}

.shape-picker__item {
  line-height: 1;
  font-size: 0;
  list-style: none;
}

.form-factor {
  font-size: 1rem;
}

.form-factor-panel-footer__order-sample .icon--cart {
  display: inline;
}

.suite-builder .artwork .artwork__title, .suite-builder .artwork .artwork__category, .artist-story .artwork .artwork__title, .artist-story .artwork .artwork__category {
  text-align: center;
}
.suite-builder .artwork a.artwork__title, .artist-story .artwork a.artwork__title {
  color: #8AAD3A;
  text-decoration: none;
}
.suite-builder .artwork a.artwork__title:hover, .artist-story .artwork a.artwork__title:hover {
  color: #666666;
  text-decoration: underline;
}

/*
  This is a hack (T_T) to fix the monolith's behaviour of importing
  minted_ui's css into site.css. Problem? it's v1.0.0 of minted_ui Q_Q.
  So we have some conflicting css.
  I'm basically duplicating the sass from minted_ui :(
*/
.tooltip.tooltip--top {
  margin-top: -5px;
}

.tooltip.tooltip--right {
  margin-top: 5px;
}

.tooltip.tooltip--bottom {
  margin-top: 5px;
}

.tooltip.tooltip--left {
  margin-top: -5px;
}

.tooltip.tooltip--top .tooltip__arrow--plum {
  border-top-color: #86504c;
}

.tooltip.tooltip--right .tooltip__arrow--plum {
  border-right-color: #86504c;
}

.tooltip.tooltip--bottom .tooltip__arrow--plum {
  border-bottom-color: #86504c;
}

.tooltip.tooltip--left .tooltip__arrow--plum {
  border-left-color: #86504c;
}

/*
  This is a hack to fix the recently viewed carousel on phones.
  For some reason, these specific styles are properly applied on desktop,
  but not on phones. The root cause might be conflicts in Product, Artwork,
  ResponsiveImage, ResponsiveCarousel, etc
*/
.recently-viewed .product.product--TH {
  height: auto;
  padding: 0 7px 10px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: 215px;
}

.swatch-picker__list {
  line-height: 0;
}

.mission-statement .btn {
  max-height: 50px;
}

.shop-by-artist__artist-column .artist-attribution {
  padding: 0;
  margin: 0 auto;
  width: 80%;
  margin-bottom: 10px;
}
.shop-by-artist__artist-column .artist-attribution__name {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 300;
}
.shop-by-artist__artist-column .artist-attribution__location {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 300;
}
.shop-by-artist__artist-column .artist-attribution__signature {
  max-height: 50px;
  width: auto;
  margin-bottom: 0px;
}
.shop-by-artist__artist-column .artwork--cp {
  margin-bottom: 10px;
}
.shop-by-artist__artist-column .artwork--cp .artwork__imgwrap {
  margin: 10px;
}
.shop-by-artist__artist-column .artwork--cp .artwork__imgwrap img {
  height: 240px;
}
.shop-by-artist__artist-column .artwork--cp .artwork__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
  line-height: 1.125;
  margin: 0px;
}
.shop-by-artist__artist-column .artwork--cp .artwork__category {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
  line-height: 1.4;
  margin: 0px;
  padding: 0px;
}

.panel {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.trigger {
  cursor: pointer;
}

#app-container-header {
  position: sticky;
  z-index: 2;
}
#app-container-header .trigger {
  cursor: pointer;
}

body {
  margin: 0;
}

.header-top-bar-ab-test .ab-search-margin {
  margin-left: 10rem;
}

body > #mn_wrapper,
body > #wrapper {
  padding-left: 0;
  padding-right: 0;
}

.responsive-header li {
  font-size: initial;
}

@media (min-width: 0px) and (max-width: 599px) {
  #app-container-header.hamburger-open .app__modal-dialogs {
    z-index: 200;
  }
}

#heading {
  position: relative;
}
#heading li {
  line-height: 1.1875rem;
}
#heading.heading--artist-skin {
  height: auto;
}

#header {
  z-index: 101;
  position: relative;
}

header.global-header {
  margin: 0 auto 0;
  padding: 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  header.global-header {
    min-height: 100px;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  header.global-header {
    min-height: 50px;
  }
}
header.global-header .header__top {
  background-color: #fff;
  position: relative;
  border-bottom: 0.0625rem solid #eee;
}
header.global-header .header__top .header-top-bar {
  height: 2.25rem;
  margin: 0 1.25rem;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
header.global-header .header__top .header-top-bar-ab-test {
  height: 2.25rem;
  margin: 0 1.25rem;
  margin-top: 1.5rem;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
header.global-header .header__top-content {
  margin: 0 auto;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
@media (min-width: 0px) and (max-width: 599px) {
  header.global-header .header__top-content {
    min-height: 50px;
  }
}
header.global-header .header__top .utility-nav__item--login {
  padding: 0.1rem;
}
header.global-header .header__top .utility-nav__item.ab-search-styles {
  padding: 0;
}
header.global-header .header__top .utility-nav__item.ab-search-styles svg {
  color: #435D5B;
}
header.global-header .header__top .utility-nav__item svg {
  color: #435D5B;
}
header.global-header .header__top .utility-nav__item #wrapperClearButton.hide-clear-button button {
  pointer-events: none;
}
header.global-header .header__top .utility-nav__item #wrapperClearButton.hide-clear-button button svg {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
header.global-header .header__top .utility-nav__item #wrapperClearButton.show-clear-button button svg {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
header.global-header .header-main {
  position: relative;
  margin-top: -3.75rem;
}
@media (min-width: 0px) and (max-width: 599px) {
  header.global-header .header-main {
    margin-top: 0;
  }
}
header.global-header .primary-nav-wrapper {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin: 0 1.25rem;
  position: relative;
  box-sizing: border-box;
}
@media (min-width: 0px) and (max-width: 599px) {
  header.global-header .primary-nav-wrapper {
    height: 100%;
    padding: 0 0.625rem;
    padding-bottom: initial;
  }
}
header.global-header .primary-nav-wrapper.primary-nav-wrapper--wedding {
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media (max-width: 65rem) {
  header.global-header .primary-nav-wrapper.primary-nav-wrapper--wedding {
    height: unset;
  }
}

.search-input-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background-color: #EEF3EC;
  color: #435D5B;
}

.secondaryNav {
  position: relative;
  top: -1px;
}

.search-input-wrapper-styles {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #CCCCCC;
}

.hamburger-menu {
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  width: 300%;
  background-color: #fff;
  position: relative;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.5);
  transition: -webkit-transform 350ms ease-in;
  transition: transform 350ms ease-in;
  transition: transform 350ms ease-in, -webkit-transform 350ms ease-in;
  transition-property: top, margin-bottom, -webkit-transform;
  transition-property: transform, top, margin-bottom;
  transition-property: transform, top, margin-bottom, -webkit-transform;
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .hamburger-menu__container {
    top: -9.75rem;
    right: 0;
    position: absolute;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.5);
    width: 20rem;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 37.5rem) {
  .hamburger-menu__container {
    height: 100%;
    position: absolute;
    width: 100%;
  }
}
.hamburger-menu.active {
  margin-right: 0;
}
.hamburger-menu__close-button--container {
  height: 2.75rem;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.hamburger-menu__close-button--container .svg-wrapper {
  margin-right: 1rem;
}
@media screen and (max-width: 37.5rem) {
  .hamburger-menu__close-button--container {
    display: none;
  }
}
.hamburger-menu__close-button {
  background: rgba(0, 0, 0, 0);
  border: none;
  color: #999;
  width: auto;
  padding: 1rem;
  outline: none;
}
.hamburger-menu svg {
  stroke-width: 0;
}
.hamburger-menu .hamburger-slide {
  width: 100%;
  display: inline-block;
  overflow-y: auto;
  margin-bottom: 0;
}
.hamburger-menu .hamburger-l1-list,
.hamburger-menu .hamburger-l2-list,
.hamburger-menu .hamburger-l3-list,
.hamburger-menu .hamburger-l3-sublist {
  width: 100%;
  list-style-type: none;
  padding: 0;
}
.hamburger-menu .hamburger-l1-list__item,
.hamburger-menu .hamburger-l2-list__item,
.hamburger-menu .hamburger-l3-list__item,
.hamburger-menu .hamburger-l3-sublist__item {
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  padding: 0.75rem 0;
  margin: 0 0.625rem 0 1rem;
  font-size: 0.75rem;
  line-height: 1.2;
}
.hamburger-menu .hamburger-l1-list__item__text,
.hamburger-menu .hamburger-l2-list__item__text,
.hamburger-menu .hamburger-l3-list__item__text,
.hamburger-menu .hamburger-l3-sublist__item__text {
  height: auto;
  -ms-flex-positive: 1;
      flex-grow: 1;
  font-size: 1.125rem;
  font-family: "Helvetica";
  letter-spacing: -0.0125rem;
  text-align: left;
  color: #666;
  font-weight: 200;
}
.hamburger-menu .hamburger-l1-list__item__image-wrapper,
.hamburger-menu .hamburger-l2-list__item__image-wrapper,
.hamburger-menu .hamburger-l3-list__item__image-wrapper,
.hamburger-menu .hamburger-l3-sublist__item__image-wrapper {
  height: 1.3125rem;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.hamburger-menu .hamburger-l1-list__item__image,
.hamburger-menu .hamburger-l2-list__item__image,
.hamburger-menu .hamburger-l3-list__item__image,
.hamburger-menu .hamburger-l3-sublist__item__image {
  height: 1.3125rem;
  max-width: calc(100% - 1.5rem);
}
.hamburger-menu .hamburger-l1-list__item__back,
.hamburger-menu .hamburger-l2-list__item__back,
.hamburger-menu .hamburger-l3-list__item__back,
.hamburger-menu .hamburger-l3-sublist__item__back {
  border-bottom: 0.0625rem solid #eee;
  margin: 0 auto;
  padding: 1rem 0 1rem 0.625rem;
}
.hamburger-menu .hamburger-l1-list__item__back .svg-wrapper,
.hamburger-menu .hamburger-l2-list__item__back .svg-wrapper,
.hamburger-menu .hamburger-l3-list__item__back .svg-wrapper,
.hamburger-menu .hamburger-l3-sublist__item__back .svg-wrapper {
  margin-right: 1rem;
  margin-top: 0;
  bottom: 0.125rem;
}
.hamburger-menu .hamburger-l1-list__item .svg-wrapper,
.hamburger-menu .hamburger-l2-list__item .svg-wrapper,
.hamburger-menu .hamburger-l3-list__item .svg-wrapper,
.hamburger-menu .hamburger-l3-sublist__item .svg-wrapper {
  position: relative;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.hamburger-menu .hamburger-l1-list__item--clickable:focus,
.hamburger-menu .hamburger-l2-list__item--clickable:focus,
.hamburger-menu .hamburger-l3-list__item--clickable:focus,
.hamburger-menu .hamburger-l3-sublist__item--clickable:focus {
  outline: none;
}
.hamburger-menu .hamburger-l1-list .trigger,
.hamburger-menu .hamburger-l2-list .trigger,
.hamburger-menu .hamburger-l3-list .trigger,
.hamburger-menu .hamburger-l3-sublist .trigger {
  display: list-item;
}
.hamburger-menu .hamburger-l2-list,
.hamburger-menu .hamburger-l3-list,
.hamburger-menu .hamburger-l3-sublist {
  display: block;
  height: auto;
}
.hamburger-menu .hamburger-l2-list__item__text,
.hamburger-menu .hamburger-l3-list__item__text,
.hamburger-menu .hamburger-l3-sublist__item__text {
  text-transform: lowercase;
}
.hamburger-menu .hamburger-l1-list {
  margin: 0.625rem 0 0.3125rem;
}
.hamburger-menu .hamburger-l2-list {
  margin: 0;
}
.hamburger-menu .hamburger-l2-list .trigger__back {
  margin-bottom: 0.5rem;
}
.hamburger-menu .hamburger-l3-list__item__group {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  line-height: 0.88;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.875rem;
  font-weight: 400;
  background-color: #f9f9f9;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 2.5rem;
  padding-left: 1rem;
  border-top: 0.0625rem solid #eee;
  border-bottom: 0.0625rem solid #eee;
}
.hamburger-menu .hamburger-l3-list__item__group .hamburger-l3-list__item__text {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 700;
  font-size: 0.75rem;
  color: #333;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #666;
  font-weight: 500;
}
.hamburger-menu .hamburger-l3-list__item__back {
  border-bottom: 0.5rem #8aad3a;
}
.hamburger-menu .hamburger-l3-list__header {
  font-weight: 500;
  color: #666;
}
.hamburger-menu .hamburger-l3-list__header__container {
  padding: 1rem 0;
}
.hamburger-menu .hamburger-l3-list .hamburger-l3-back-trigger {
  border-bottom: 0.25rem solid #8aad3a;
}
.hamburger-menu .hamburger-l3-sublist {
  margin: 0.625rem 0;
}
.hamburger-menu .hamburger-l3-sublist__item__text {
  text-decoration: none;
}
.hamburger-menu .hamburger-search {
  padding: 1rem 0.625rem;
  height: 2.75rem;
}
.hamburger-menu .hamburger-search__container {
  height: 4.75rem;
  width: 100%;
  background-color: #f9f9f9;
  border-top: 0.0625rem solid #eee;
}
.hamburger-menu .hamburger-search__field,
.hamburger-menu .hamburger-search input[type=text] {
  height: 2.75rem;
  width: 100%;
  background-color: #fff;
  padding: 0;
  padding-left: 2.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border: solid 1px #ccc;
  box-sizing: border-box;
  line-height: 200%;
}
.hamburger-menu .hamburger-search__field::-webkit-input-placeholder {
  padding-top: 0.5rem;
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  line-height: 0.88;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.875rem;
  font-weight: 700;
}
.hamburger-menu .hamburger-search__field:-ms-input-placeholder {
  padding-top: 0.5rem;
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  line-height: 0.88;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.875rem;
  font-weight: 700;
}
.hamburger-menu .hamburger-search__field::-ms-input-placeholder {
  padding-top: 0.5rem;
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  line-height: 0.88;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.875rem;
  font-weight: 700;
}
.hamburger-menu .hamburger-search__field::placeholder {
  padding-top: 0.5rem;
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  line-height: 0.88;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.875rem;
  font-weight: 700;
}
.hamburger-menu .hamburger-search .svg-wrapper {
  bottom: 2.25rem;
  left: 0.75rem;
  position: relative;
}
.hamburger-menu .hamburger-utility-nav-links {
  width: 100%;
  list-style-type: none;
}
.hamburger-menu .hamburger-utility-nav-links__item {
  height: 2.75rem;
  border-top: 0.0625rem solid #eee;
}
.hamburger-menu .hamburger-utility-nav-links__item__link,
.hamburger-menu .hamburger-utility-nav-links__item a {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  line-height: 0.88;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.875rem;
  font-weight: 700;
  width: 100%;
  display: inline-block;
}
.hamburger-menu .hamburger-utility-nav-links__item__link .link-description,
.hamburger-menu .hamburger-utility-nav-links__item a .link-description {
  position: relative;
  bottom: 0.4375rem;
}
.hamburger-menu .hamburger-utility-nav-links__item .svg-container {
  width: 3.5rem;
  height: 2.75rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  stroke-width: 0;
  color: #999;
  opacity: 0.666;
}
.hamburger-menu .hamburger-utility-nav-links__item .svg-wrapper {
  position: relative;
  top: -0.125rem;
}
.hamburger-menu .svg-wrapper .icon,
.hamburger-menu .svg-wrapper .icon:hover {
  opacity: 1;
}
.hamburger-menu__backdrop {
  height: 100vh;
  position: absolute;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.8);
  transition: background-color 350ms ease-in-out;
}
.hamburger-menu__backdrop.hamburger-menu__transition-enter {
  background-color: rgba(255, 255, 255, 0);
}
.hamburger-menu__backdrop.hamburger-menu__transition-enter-active {
  background-color: rgba(255, 255, 255, 0.8);
}
.hamburger-menu__backdrop.hamburger-menu__transition-leave {
  transition: background-color 350ms ease-in-out;
}
.hamburger-menu__backdrop.hamburger-menu__transition-leave-active {
  background-color: rgba(255, 255, 255, 0);
}
.hamburger-menu__transition-enter, .hamburger-menu__transition__container-enter {
  margin-right: -20rem;
}
@media screen and (max-width: 37.5rem) {
  .hamburger-menu__transition-enter, .hamburger-menu__transition__container-enter {
    margin-right: initial;
    top: -100vh;
    transition: none 350ms ease-in;
    transition-property: background-color, top, margin-right;
  }
}
.hamburger-menu__transition-enter-active, .hamburger-menu__transition__container-enter-active {
  margin-right: 0;
  transition: margin-right 350ms ease-in;
}
@media screen and (max-width: 37.5rem) {
  .hamburger-menu__transition-enter-active, .hamburger-menu__transition__container-enter-active {
    margin-right: initial;
    transition: none 350ms ease-in;
    transition-property: background-color, top, margin-right;
    top: 0;
  }
}
.hamburger-menu__transition-leave, .hamburger-menu__transition__container-leave {
  margin-right: 0;
}
@media screen and (max-width: 37.5rem) {
  .hamburger-menu__transition-leave, .hamburger-menu__transition__container-leave {
    top: 0;
  }
}
.hamburger-menu__transition-leave-active, .hamburger-menu__transition__container-leave-active {
  margin-right: -20rem;
  transition: margin-right 350ms ease-in;
}
@media screen and (max-width: 37.5rem) {
  .hamburger-menu__transition-leave-active, .hamburger-menu__transition__container-leave-active {
    margin-right: initial;
    top: -100vh;
    transition: none 350ms ease-in;
    transition-property: background-color, top, margin-right;
  }
}

.lifestyle-nav {
  width: 23rem;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -ms-flex-pack: center;
      justify-content: center;
  padding-left: 0;
  height: 2.25rem;
  margin: 0;
  max-width: 37.5rem;
}
@media screen and (max-width: 37.5rem) {
  .lifestyle-nav {
    position: relative;
    margin: 0;
    height: inherit;
    right: initial;
    width: inherit;
    max-width: 100%;
    bottom: initial;
  }
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .lifestyle-nav {
    width: 23rem;
    left: 1rem;
    position: relative;
    bottom: initial;
    margin: 0;
    margin-bottom: -2rem;
  }
}
.lifestyle-nav__item {
  display: inline-block;
  margin: 0 1.25rem;
  z-index: 2;
  height: 2.25rem;
  border-bottom: 0.125rem solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .lifestyle-nav__item {
    margin: 0 0.625rem;
  }
}
@media screen and (max-width: 37.5rem) {
  .lifestyle-nav__item {
    margin: 0 0.75rem;
  }
}
.lifestyle-nav__item__text {
  color: #808080;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #666;
  font-size: 0.9rem;
  top: 0.8125rem;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 37.5rem) {
  .lifestyle-nav__item__text {
    font-size: 1rem;
    top: 0.5625rem;
  }
}
.lifestyle-nav__item__text:hover {
  text-decoration: none;
  color: #666;
}
.lifestyle-nav__item__logo {
  height: 1.3125rem;
}
.lifestyle-nav__item--selected {
  border-bottom: 0.125rem solid #8aad3a;
}
.lifestyle-nav__item.active {
  border-bottom: 0.125rem solid #8aad3a;
  position: relative;
}
.lifestyle-nav__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-positive: 1;
      flex-grow: 1;
  height: 100%;
}
@media screen and (max-width: 37.5rem) {
  .lifestyle-nav__container {
    height: 2.25rem;
    position: relative;
    bottom: initial;
  }
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .lifestyle-nav__container {
    position: initial;
  }
}

a.lifestyle-nav__item__text {
  color: #808080;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #666;
  font-size: 1rem;
  top: 0.5rem;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 37.5rem) {
  a.lifestyle-nav__item__text {
    top: 0.5625rem;
  }
}

.phone-utility-nav {
  display: none;
  padding-bottom: 15px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 300;
}
@media screen and (max-width: 37.5rem) {
  .phone-utility-nav {
    display: block;
  }
}
.phone-utility-nav .utility-nav__item--link {
  display: block;
  margin: 6px 0;
  font-size: 18px;
  padding-left: 8px;
}
.phone-utility-nav .utility-nav__item--link a {
  color: #666;
}
.phone-utility-nav .bottom-search {
  margin: 15px 0 10px 0;
  width: 100%;
  position: relative;
}
.phone-utility-nav .bottom-search input[type=text] {
  -moz-appearance: none;
  -webkit-appearance: none;
  height: auto;
  box-sizing: border-box;
}
.phone-utility-nav .bottom-search .search-field {
  width: 100%;
  padding: 7px 5px 7px 45px;
  font-size: 14px;
  border: 1px solid #cecece;
  border-radius: 1px;
  outline: 0;
}
.phone-utility-nav .svg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 4px;
  padding-left: 8px;
}

#heading .header__bottom {
  position: relative;
  height: 7.5rem;
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom {
    overflow: hidden;
    transition: height 0.2s ease-in;
    box-shadow: none;
    height: auto;
  }
}
#heading .header__bottom .back-button {
  display: none;
}
#heading .header__bottom .arrow-left-svg-wrapper {
  display: none;
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom .secondary-nav {
    display: none;
    height: initial;
  }
}
@media screen and (max-width: 60rem) {
  #heading .header__bottom .secondary-nav.wedding {
    display: none;
    height: initial;
    z-index: 1;
  }
}
#heading .header__bottom::before {
  background: transparent none repeat scroll 0 0;
  bottom: -2px;
  content: "";
  height: 4px;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .primary-nav-wrapper {
    border: 0;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .primary-nav {
    padding: 0;
    border: 0;
    background: #f5f5f5;
    display: none;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .primary-nav .primary-nav__item:not(.primary-nav--active-menu-vertical) {
    display: none;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .primary-nav .primary-nav__item .arrow-left-svg-wrapper {
    position: absolute;
    left: 13px;
    top: 21px;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .primary-nav--active-menu-vertical {
    position: static;
    padding: 22px 0 14px 40px;
    border: none;
    display: none;
  }
}
#heading .header__bottom.header__bottom--vertical-active .back-button {
  width: 100%;
  line-height: 39px;
  padding: 10px 0 10px 20px;
  background: #f5f5f5;
  border-bottom: 1px solid #cecece;
  cursor: pointer;
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .back-button {
    display: none;
  }
}
#heading .header__bottom.header__bottom--vertical-active .back-button .arrow-left-svg-wrapper {
  display: inline-block;
  position: relative;
  right: 8px;
  bottom: 1px;
}
#heading .header__bottom.header__bottom--vertical-active .back-button__caption {
  display: inline-block;
  font-family: "Brandon-Grotesque", sans-serif;
  color: #8aad3a;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  padding-left: 6px;
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .secondary-nav {
    position: static;
    display: block;
    background-color: #fff;
    border-top: 1px solid #cecece;
    box-shadow: none;
    height: initial;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .small-3, #heading .header__bottom.header__bottom--vertical-active .small-4 {
    width: 100%;
    padding: 0;
    float: none;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .small-9 {
    display: none;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .secondary-nav__level-three__menus {
    transition: none;
    margin: 0;
    border-top: 1px solid #cecece;
    padding: 0 30px 0 40px;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .secondary-nav__level-three__menus .row {
    margin: 0;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .secondary-nav__level-three_group {
    margin: 0;
    border-bottom: 1px solid #cecece;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .secondary-nav__level-three__item {
    padding: 0;
    margin-bottom: 5px;
    color: #666;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .secondary-nav__level-two .secondary-nav__level-two__item {
    box-sizing: border-box;
    margin: 15px 0 0;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .secondary-nav__level-two .secondary-nav__level-two__item a {
    font-size: 22px;
    padding: 5px 0;
    font-weight: 300;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .secondary-nav__level-two .secondary-nav__level-two__title {
    padding: 0;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .secondary-nav__level-two .secondary-nav__level-two__arrow {
    display: none;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--vertical-active .secondary-nav__level-two {
    padding: 0 0 0 40px;
  }
}
#heading .header__bottom.header__bottom--vertical-active .phone-utility-nav {
  display: none;
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--tertiary-active .secondary-nav__level-two {
    background: #f5f5f5;
    margin: 0;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--tertiary-active .secondary-nav__level-two__item.active {
    margin: 0;
    padding: 15px 0;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--tertiary-active .secondary-nav__level-two__item:not(.active) {
    display: none;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--tertiary-active .small-9 {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 37.5rem) {
  #heading .header__bottom.header__bottom--tertiary-active .primary-nav__item .arrow-left-svg-wrapper {
    display: inline-block;
    top: -1px;
    position: relative;
  }
}

#header-bottom-height-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 37.5rem) {
  #header-bottom-height-container {
    min-height: 3.4375rem;
    display: block;
    position: initial;
    bottom: initial;
  }
}

.primary-nav-container {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.primary-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  box-sizing: border-box;
  margin: 0;
  max-width: 80rem;
  padding-left: 0;
  width: 100%;
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .primary-nav {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media screen and (max-width: 37.5rem) {
  .primary-nav {
    top: 0;
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    display: none;
  }
}
.primary-nav__site-logo {
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-positive: 0;
      flex-grow: 0;
  margin-bottom: 0.438rem;
  padding-top: 1.6875rem;
  margin-right: 0.9375rem;
  z-index: 0;
}
@media screen and (max-width: 37.5rem) {
  .primary-nav__site-logo {
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
}
.primary-nav__site-logo a {
  display: block;
  position: relative;
  z-index: 1;
  height: 2.125rem;
}
@media screen and (max-width: 37.5rem) {
  .primary-nav__site-logo a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
}
.primary-nav__site-logo a img {
  color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.primary-nav__site-logo a .skin-logo {
  width: 150px;
}
@media screen and (max-width: 37.5rem) {
  .primary-nav__site-logo a .skin-logo {
    display: none;
  }
}
@media screen and (max-width: 37.5rem) {
  .primary-nav__site-logo a .desktop-tablet-logo-image {
    display: none;
  }
}
.primary-nav__site-logo a .phone-logo-img {
  display: block;
}
@media screen and (min-width: 60.0625rem) {
  .primary-nav__site-logo a .phone-logo-img {
    display: none;
  }
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .primary-nav__site-logo a .phone-logo-img {
    display: none;
  }
}
.primary-nav__item {
  border-bottom: 0.1875rem solid transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  float: left;
  margin-bottom: 0;
  margin-right: 0.75rem;
  height: 1.5625rem;
  padding-bottom: 0.7875rem;
  position: relative;
}
@media screen and (max-width: 37.5rem) {
  .primary-nav__item {
    padding: 0.875rem 0 14px 0.7875rem;
    display: block;
    float: none;
  }
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .primary-nav__item {
    margin-right: 0.75rem;
  }
}
.primary-nav__item a {
  cursor: default;
  display: block;
  height: 25px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.primary-nav__item:last-child {
  margin-right: 0;
}

.primary-nav-wrapper.primary-nav-wrapper--flex-right .primary-nav {
  -ms-flex-preferred-size: inherit;
      flex-basis: inherit;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .primary-nav-wrapper.primary-nav-wrapper--flex-right .primary-nav__site-logo {
    padding-top: 0;
  }
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .primary-nav-wrapper.primary-nav-wrapper--flex-right .primary-nav__item {
    margin: 0;
    margin-right: 0.75rem;
  }
}
.primary-nav-wrapper.primary-nav-wrapper--flex-right .primary-nav__item:first-child {
  margin-left: 0;
}
.primary-nav-wrapper.primary-nav-wrapper--flex-right .primary-nav__item:last-child {
  margin-right: 0;
}

.primary-nav-wrapper.primary-nav-wrapper--use-tall-desktop-image .primary-nav {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.primary-nav-wrapper.primary-nav-wrapper--use-tall-desktop-image .primary-nav::before, .primary-nav-wrapper.primary-nav-wrapper--use-tall-desktop-image .primary-nav::after {
  content: "";
  height: 0;
  width: 0;
  background: transparent;
}
.primary-nav-wrapper.primary-nav-wrapper--use-tall-desktop-image .desktop-l1-image {
  height: 1.625rem;
}

.primary-nav-wrapper .l1-svg-ref {
  display: none;
}

.primary-nav li:last-child::after {
  display: none;
}

.primary-nav li.primary-nav--active-page-vertical {
  border-color: #8aad3a;
}
@media screen and (max-width: 37.5rem) {
  .primary-nav li.primary-nav--active-page-vertical {
    border-color: transparent;
  }
}

.primary-nav li.primary-nav--active-menu-vertical {
  border-color: rgba(138, 173, 58, 0.5);
}

.primary-nav-item-wedding {
  margin-right: 3.75rem;
}
@media (max-width: 73rem) {
  .primary-nav-item-wedding {
    margin-right: 0;
  }
}

.community-sub-nav {
  background: #fff;
  white-space: nowrap;
  z-index: -2;
  text-align: center;
  border-bottom: 0.0625rem solid #eee;
}
.community-sub-nav__item {
  display: inline-block;
  margin-bottom: 0;
  height: 47px;
}
.community-sub-nav__item .community-sub-nav__link {
  border-bottom: 0.1875rem solid transparent;
  display: block;
  height: 1.8125rem;
  margin: 0.375rem 1.8125rem 0;
  text-decoration: none;
  vertical-align: bottom;
  color: #333;
}
.community-sub-nav__item .community-sub-nav__link:hover {
  font-weight: 700;
  cursor: pointer;
}
.community-sub-nav__item .drop-down-items.select-menu > li > a {
  color: #333;
}
.community-sub-nav ul {
  margin-bottom: 0;
}
.community-sub-nav .tooltip.tooltip--bottom {
  margin-top: 0;
}

.community-sub-nav__flyout-overlay-wrapper .secondary-nav-heading {
  padding-top: 0.75rem;
  height: 1.3125rem;
}
.community-sub-nav__flyout-overlay-wrapper .svg-wrapper {
  padding-left: 0.3125rem;
  margin-bottom: 0.125rem;
}

.secondary-nav__level-three__item {
  margin-bottom: 0.25rem;
}
.secondary-nav__level-three__item .secondary-nav__super {
  font-size: 8px;
  vertical-align: top;
  color: #999;
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .secondary-nav__level-three__item img {
    max-width: 100%;
  }
}

.secondary-nav__level-three_group {
  margin-bottom: 25px;
}
.secondary-nav__level-three_group a.secondary-nav__level-three__link {
  text-decoration: none;
}

.secondary-nav__l3icon {
  position: relative;
  float: left;
  height: 18px;
  bottom: 1px;
  margin-bottom: 1px;
  margin-right: 6px;
}

@media only screen and (max-width: 767px) {
  .secondary-nav__l3icon {
    bottom: -4px;
    margin-bottom: 13px;
  }
}
.secondary-nav__level-two {
  padding-left: 30px;
  padding-top: 0.5rem;
}

.secondary-nav__level-two__item {
  margin-top: 0.625rem;
  height: auto;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .secondary-nav__level-two__item {
    cursor: pointer;
  }
}
.secondary-nav__level-two__item:last-child {
  margin-bottom: 30px;
}
.secondary-nav__level-two__item .secondary-nav__level-two__title {
  padding-top: 5px;
}

.desktop-l1-image, .tablet-l1-image {
  height: 1.5625rem;
}

.desktop-l1-text,
.tablet-l1-text {
  font-family: "HelveticaNeue-Light";
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  color: #666;
}

@media screen and (min-width: 60.0625rem) {
  .tablet-l1-image,
  .tablet-l1-text {
    display: none;
  }
}

@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .desktop-l1-image,
  .desktop-l1-text {
    display: none;
  }
}

.primary-nav__item {
  cursor: pointer;
}

.community-sub-nav__flyout-overlay-wrapper .community-sub-nav-overlay-link {
  display: block;
}
.community-sub-nav__flyout-overlay-wrapper .community-sub-nav-overlay-link__title {
  color: #333;
}
.community-sub-nav__flyout-overlay-wrapper .community-sub-nav__link--flyout {
  padding-bottom: 0.3125rem;
}

.community-sub-nav-overlay-container__challenge-item:last-child {
  padding-right: 0;
}
.community-sub-nav-overlay-container__challenge-item .community-sub-nav-challenge-link-container {
  width: 100%;
  height: 100%;
}
.community-sub-nav-overlay-container .community-sub-nav-challenge-wrapper__title {
  color: #333;
}
.community-sub-nav-overlay-container .community-sub-nav-challenge-wrapper__category {
  color: #333;
}

.secondary-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.97);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  transition: -webkit-transform 750ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
  transition: transform 750ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
  transition: transform 750ms cubic-bezier(0.17, 0.04, 0.03, 0.94), -webkit-transform 750ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
}
.secondary-nav .row {
  max-width: 1180px;
}
.secondary-nav.active {
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  margin-top: 7.5rem;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.2);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-bottom: 1px solid #ccc;
}
.secondary-nav .small-9.columns {
  padding: 0;
  min-height: 470px;
}
@media screen and (max-width: 37.5rem) {
  .secondary-nav {
    z-index: 1;
  }
}
.secondary-nav .close-secondary-nav-button {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 10px;
  display: none;
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .secondary-nav .close-secondary-nav-button {
    display: block;
  }
}

.secondary-nav-dropdown {
  display: none;
}

.secondary-nav-dropdown.show {
  display: block;
}

.secondary-nav__level-three__menus {
  padding: 0 15px;
  margin-top: 1.625rem;
}

.old-browser-dialog-container {
  width: 100%;
  text-align: center;
  background-color: #f4f4f4;
  border-bottom: 2px solid #ccc;
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 400;
}
.old-browser-dialog-container .dialog-title {
  padding: 10px 0 2px 0;
}
.old-browser-dialog-container .dialog-title svg {
  vertical-align: middle;
  padding-right: 5px;
  line-height: 0;
}
.old-browser-dialog-container .dialog-title span {
  color: #333;
  font-size: 14px;
  font-weight: bold;
  line-height: 0;
  font-style: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  vertical-align: middle;
}
.old-browser-dialog-container .dialog-content {
  padding-bottom: 10px;
}
.old-browser-dialog-container .dialog-content .dialog-content-body {
  color: #333;
  line-height: 25px;
  padding-bottom: 7px;
}
.old-browser-dialog-container .dialog-content a {
  color: #fff;
}

.old-browser-dialog-appear {
  height: 0;
}

.old-browser-dialog-appear.old-browser-dialog-appear-active {
  height: 131px;
  transition: height 1s ease-in-out;
}

.artist-header-skin {
  overflow: hidden;
}
@media screen and (max-width: 37.5rem) {
  .artist-header-skin-container {
    min-height: 2.25rem;
  }
}

.artist-header-skin__content {
  height: 18.75rem;
  width: 100%;
}
.artist-header-skin__content .artist-header-skin__artwork {
  color: rgba(0, 0, 0, 0);
  position: absolute;
  width: 29.375rem;
  height: 18.75rem;
  box-sizing: border-box;
}
.artist-header-skin__content .js_artist-header-skin__artwork {
  background-size: 100% 100%;
  width: 100%;
  padding-bottom: 63.8%;
}

.artist-header-skin__trigger {
  line-height: 1;
  z-index: 1;
  width: 100%;
  border-bottom: 0.0625rem solid #eee;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
}
@media screen and (max-width: 37.5rem) {
  .artist-header-skin__trigger {
    display: block;
  }
}

.artist-header-skin__message {
  position: absolute;
  overflow: hidden;
  font-size: 1.25rem;
  max-height: 210px;
  top: 1.5rem;
  left: 34.375rem;
  padding-right: 1.25rem;
}
@media screen and (max-width: 37.5rem) {
  .artist-header-skin__message {
    display: none;
  }
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .artist-header-skin__message {
    display: none;
  }
}

.artist-header-skin__signature {
  height: 50px;
}
.artist-header-skin__signature img {
  color: rgba(0, 0, 0, 0);
  height: 50px;
}

img.artist-header-skin__avatar {
  position: absolute;
  top: 4.5625rem;
  height: 6.25rem;
  width: 6.25rem;
  border-radius: 50%;
  left: 26.5625rem;
  z-index: 1;
  color: rgba(0, 0, 0, 0);
}

.artist-header-skin .off-canvas__close {
  cursor: pointer;
  padding: 5px;
  top: 0;
}

.artist-header-skin .off-canvas {
  overflow: hidden;
  height: 300px;
  margin-top: 0;
  transition: margin-top 600ms ease-in-out;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (max-width: 37.5rem) {
  .artist-header-skin .off-canvas {
    display: none;
  }
}

.artist-header-skin .off-canvas__content {
  top: 0;
  width: 100%;
  padding: 0 1.25rem;
  box-sizing: border-box;
  max-width: 75rem;
}
.artist-header-skin .off-canvas__content .artist-header-skin__message,
.artist-header-skin .off-canvas__content .artist-header-skin__avatar,
.artist-header-skin .off-canvas__content .off-canvas__close {
  opacity: 0;
  transition: opacity 200ms linear;
}

@media screen and (min-width: 60.0625rem) {
  .artist-header-skin .off-canvas.off-canvas--open {
    margin-top: 2.25rem;
  }
}
.artist-header-skin .off-canvas.off-canvas--open .artist-header-skin__message,
.artist-header-skin .off-canvas.off-canvas--open .artist-header-skin__avatar,
.artist-header-skin .off-canvas.off-canvas--open .off-canvas__close {
  opacity: 1;
  transition: opacity 350ms linear;
  transition-delay: 400ms;
}

.artist-header-skin .off-canvas--notification {
  height: 50px;
  margin-top: -50px;
}

.artist-header-skin .off-canvas--banner {
  margin-top: -12.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
@media screen and (max-width: 37.5rem) {
  .artist-header-skin .off-canvas--banner {
    display: none;
  }
}

.header-cta {
  z-index: 1;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  height: 2.25rem;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 18rem;
}
@media (min-width: 1200px) {
  .header-cta {
    width: 24.75rem;
  }
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .header-cta {
    width: 7.5rem;
  }
}
@media screen and (max-width: 37.5rem) {
  .header-cta {
    display: none;
  }
}
.header-cta li {
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1rem;
  font-size: initial;
}
.header-cta__item {
  margin-right: 1.25rem;
  list-style-type: none;
  display: inline-block;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .header-cta__item--artist {
    display: none;
  }
}
.header-cta__item__link {
  color: #808080;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: lowercase;
}
.header-cta__item__link:hover {
  color: #808080;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
}
.header-cta__item__link--artist {
  cursor: pointer;
}
.header-cta__item--feed {
  display: none;
}
@media (min-width: 1200px) {
  .header-cta__item--feed {
    display: inline-block;
  }
}
.header-cta .header-cta__item__link {
  color: #808080;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Arial", "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
}

#heading ul.utility-nav li {
  line-height: initial;
}

.header__top .utility-nav {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 300;
  line-height: 1.375;
  font-size: 0.75rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin: 0;
  position: relative;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
  width: 17rem;
  float: right;
}
@media screen and (max-width: 60rem) {
  .header__top .utility-nav .tooltip {
    display: none;
  }
}
@media screen and (max-width: 60rem) and (min-width: 37.5625rem) {
  .header__top .utility-nav {
    width: 7.5rem;
    height: 2.25rem;
  }
}
@media screen and (max-width: 37.5rem) {
  .header__top .utility-nav {
    display: -ms-inline-flexbox;
    display: inline-flex;
    float: right;
    position: absolute;
    width: -webkit-min-content;
    width: min-content;
    right: 0;
    max-height: 3.5rem;
    height: 3.5rem;
    margin: 0;
    top: 2.25rem;
    padding-right: 0.625rem;
  }
}
.header__top .utility-nav__caption {
  display: none;
}
.header__top .utility-nav__item {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  cursor: pointer;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  vertical-align: middle;
  padding: 0.3125rem 0.625rem;
  margin-bottom: 0;
}
@media screen and (max-width: 37.5rem) {
  .header__top .utility-nav__item {
    padding: 0.3125rem 0.375rem;
  }
}
.header__top .utility-nav__item--hamburger {
  display: none;
}
@media screen and (max-width: 60rem) {
  .header__top .utility-nav__item--hamburger {
    display: -ms-flexbox;
    display: flex;
  }
}
.header__top .utility-nav__item--hamburger .close-svg-wrapper {
  padding-right: 0.3125rem;
}
.header__top .utility-nav__item-icon-container {
  margin-top: 0;
  height: 1.5rem;
}
.header__top .utility-nav__item svg {
  stroke-width: 0;
  color: #999;
  opacity: 0.666;
}
@media screen and (max-width: 37.5rem) {
  .header__top .utility-nav__item .svg-wrapper .icon {
    margin: 0;
    display: inline-block;
  }
}
.header__top .utility-nav__item .select-menu li {
  font-size: 0.875rem;
}
.header__top .utility-nav__item.nav__separator {
  border-right: 1px dotted #999;
  padding: 0;
  margin: 0 0.625rem;
  min-height: 22px;
  width: 1px;
}
.header__top .utility-nav__item.nav__separator::after {
  clear: both;
  content: "";
  display: table;
}
.header__top .utility-nav__item a {
  text-decoration: none;
  color: #999;
}
.header__top .utility-nav__item a:hover {
  color: #666;
  text-decoration: underline;
}
@media screen and (max-width: 60rem) {
  .header__top .utility-nav__item--link, .header__top .utility-nav__item--help, .header__top .utility-nav__item--avatar {
    display: none;
  }
}
@media screen and (max-width: 60rem) {
  .header__top .utility-nav__item--search .tooltip {
    display: block;
  }
}
@media screen and (max-width: 60rem) {
  .header__top .utility-nav__item--login {
    display: none;
  }
}
.header__top .utility-nav__item--login .utility-nav__caption {
  display: block;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.header__top .utility-nav__search {
  padding: 6px 10px;
  min-width: 160px;
  margin: 0;
}
.header__top .utility-nav__search input {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1;
  font-weight: 700;
  font-size: 0.75rem;
  color: #333;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #999;
  font-weight: inherit;
  border: 0;
  outline: none;
  width: 100%;
  line-height: normal;
  box-shadow: none;
}
.header__top .utility-nav__counter {
  background-color: #aaa;
  border-radius: 100%;
  border: 1px solid #fff;
  bottom: 2px;
  height: 15px;
  right: 2px;
  text-align: center;
  width: 15px;
  position: absolute;
}
@media screen and (max-width: 37.5rem) {
  .header__top .utility-nav__counter {
    bottom: 0.75rem;
  }
}
.header__top .utility-nav__counter__inner {
  margin-top: 0.0625rem;
  font-size: 0.6rem;
  color: #fff;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 37.5rem) {
  .header__top .utility-nav__counter__inner {
    margin-top: 0;
  }
}
.header__top .utility-nav .tooltip__arrow::before {
  content: "";
  display: block;
  opacity: 0;
  left: -24px;
  top: -10px;
  width: 50px;
  height: 25px;
  position: relative;
}
@media screen and (max-width: 37.5rem) {
  .header__top .utility-nav .nav__separator {
    display: none;
  }
}

.header-premier-account-text {
  display: inline-block;
  vertical-align: baseline;
}
.header-premier-account-image {
  display: inline-block;
  height: 16px;
  margin-left: 9px;
  vertical-align: text-bottom;
  width: auto;
}
.header-premier-upsell-text {
  border-top: 1px solid #ccc;
  padding: 8px;
}
.header-premier-upsell-promoText {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Arial", "Helvetica", sans-serif;
  font-style: normal;
  font-size: 11px;
  color: #666;
  text-transform: none;
}

.show-small-width-header.global-header .header__top-content .header-top-bar {
  max-width: 75rem;
  margin: 0 auto;
}
.show-small-width-header.global-header .header__top-content .header-top-bar .header-cta {
  margin-left: 1.25rem;
}
.show-small-width-header.global-header .header__top-content .primary-nav-wrapper {
  max-width: 75rem;
  padding: 0 1.25rem;
  margin: 0 auto;
}
.show-small-width-header.global-header .header__top-content .primary-nav__item {
  margin-right: 1.25rem;
}
.show-small-width-header.global-header .header__top-content .primary-nav {
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-preferred-size: inherit;
      flex-basis: inherit;
}
.show-small-width-header.global-header .primary-nav__site-logo {
  position: relative;
  top: 0;
}
.show-small-width-header.global-header .artist-header-skin .off-canvas--banner {
  -ms-flex-pack: center;
      justify-content: center;
}
@charset "UTF-8";
/*! Flickity v2.1.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: #333;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.CalendarDay {
  border: 1px solid #e4e7e7;
  padding: 0;
  box-sizing: border-box;
  color: #565a5c;
  cursor: pointer;
}

.CalendarDay__button {
  position: relative;
  height: 100%;
  width: 100%;
  text-align: center;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  box-sizing: border-box;
}
.CalendarDay__button:active {
  outline: 0;
}

.CalendarDay--highlighted-calendar {
  background: #ffe8bc;
  color: #565a5c;
  cursor: default;
}
.CalendarDay--highlighted-calendar:active {
  background: #007a87;
}

.CalendarDay--outside {
  border: 0;
  cursor: default;
}
.CalendarDay--outside:active {
  background: #fff;
}

.CalendarDay--hovered {
  background: #e4e7e7;
  border: 1px double #d4d9d9;
  color: inherit;
}

.CalendarDay--blocked-minimum-nights {
  color: #cacccd;
  background: #fff;
  border: 1px solid #e4e7e7;
  cursor: default;
}
.CalendarDay--blocked-minimum-nights:active {
  background: #fff;
}

.CalendarDay--selected-span {
  background: #66e2da;
  border: 1px double #33dacd;
  color: #fff;
}
.CalendarDay--selected-span.CalendarDay--hovered, .CalendarDay--selected-span:active {
  background: #33dacd;
  border: 1px double #00a699;
}
.CalendarDay--selected-span.CalendarDay--last-in-range {
  border-right: #00a699;
}

.CalendarDay--hovered-span,
.CalendarDay--after-hovered-start {
  background: #b2f1ec;
  border: 1px double #80e8e0;
  color: #007a87;
}
.CalendarDay--hovered-span:active,
.CalendarDay--after-hovered-start:active {
  background: #80e8e0;
}

.CalendarDay--selected-start,
.CalendarDay--selected-end,
.CalendarDay--selected {
  background: #00a699;
  border: 1px double #00a699;
  color: #fff;
}
.CalendarDay--selected-start:active,
.CalendarDay--selected-end:active,
.CalendarDay--selected:active {
  background: #00a699;
}

.CalendarDay--blocked-calendar {
  background: #cacccd;
  color: #82888a;
  cursor: default;
}
.CalendarDay--blocked-calendar:active {
  background: #cacccd;
}

.CalendarDay--blocked-out-of-range {
  color: #cacccd;
  background: #fff;
  border: 1px solid #e4e7e7;
  cursor: default;
}
.CalendarDay--blocked-out-of-range:active {
  background: #fff;
}

.CalendarMonth {
  text-align: center;
  padding: 0 13px;
  vertical-align: top;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.CalendarMonth table {
  border-collapse: collapse;
  border-spacing: 0;
  caption-caption-side: initial;
}

.CalendarMonth--horizontal:first-of-type,
.CalendarMonth--vertical:first-of-type {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

.CalendarMonth--horizontal {
  display: inline-block;
  min-height: 100%;
}

.CalendarMonth--vertical {
  display: block;
}

.CalendarMonth__caption {
  color: #3c3f40;
  margin-top: 7px;
  font-size: 18px;
  text-align: center;
  margin-bottom: 2px;
  caption-side: initial;
}

.CalendarMonth--horizontal .CalendarMonth__caption,
.CalendarMonth--vertical .CalendarMonth__caption {
  padding: 15px 0 35px;
}

.CalendarMonth--vertical-scrollable .CalendarMonth__caption {
  padding: 5px 0;
}

.CalendarMonthGrid {
  background: #fff;
  z-index: 0;
  text-align: left;
}

.CalendarMonthGrid--animating {
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  z-index: 1;
}

.CalendarMonthGrid--horizontal {
  position: absolute;
  left: 9px;
}

.CalendarMonthGrid--vertical {
  margin: 0 auto;
}

.CalendarMonthGrid--vertical-scrollable {
  margin: 0 auto;
  overflow-y: scroll;
}

.DayPicker {
  background: #fff;
  position: relative;
  text-align: left;
}

.DayPicker--horizontal {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
  border-radius: 3px;
}
.DayPicker--horizontal.DayPicker--portal {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%;
}

.DayPicker--vertical.DayPicker--portal {
  position: initial;
}

.DayPicker__focus-region {
  outline: none;
}

.DayPicker__week-headers {
  position: relative;
}

.DayPicker--horizontal .DayPicker__week-headers {
  margin-left: 9px;
}

.DayPicker__week-header {
  color: #757575;
  position: absolute;
  top: 62px;
  z-index: 2;
  padding: 0 13px;
  text-align: left;
}
.DayPicker__week-header ul {
  list-style: none;
  margin: 1px 0;
  padding-left: 0;
  padding-right: 0;
}
.DayPicker__week-header li {
  display: inline-block;
  text-align: center;
}

.DayPicker--vertical .DayPicker__week-header {
  left: 50%;
}

.DayPicker--vertical-scrollable {
  height: 100%;
}
.DayPicker--vertical-scrollable .DayPicker__week-header {
  top: 0;
  display: table-row;
  border-bottom: 1px solid #dbdbdb;
  background: white;
}
.DayPicker--vertical-scrollable .transition-container--vertical {
  padding-top: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: scroll;
}
.DayPicker--vertical-scrollable .DayPicker__week-header {
  margin-left: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.transition-container {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.transition-container--horizontal {
  transition: height 0.2s ease-in-out;
}

.transition-container--vertical {
  width: 100%;
}

.DayPickerNavigation__prev,
.DayPickerNavigation__next {
  cursor: pointer;
  line-height: 0.78;
  -webkit-user-select: none; /* Chrome/Safari */ /* Firefox */
  -ms-user-select: none; /* IE10+ */
  user-select: none;
}

.DayPickerNavigation__prev--default,
.DayPickerNavigation__next--default {
  border: 1px solid #dce0e0;
  background-color: #fff;
  color: #757575;
}
.DayPickerNavigation__prev--default:focus, .DayPickerNavigation__prev--default:hover,
.DayPickerNavigation__next--default:focus,
.DayPickerNavigation__next--default:hover {
  border: 1px solid #c4c4c4;
}
.DayPickerNavigation__prev--default:active,
.DayPickerNavigation__next--default:active {
  background: #f2f2f2;
}

.DayPickerNavigation--horizontal {
  position: relative;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__prev,
.DayPickerNavigation--horizontal .DayPickerNavigation__next {
  border-radius: 3px;
  padding: 6px 9px;
  top: 18px;
  z-index: 2;
  position: absolute;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__prev {
  left: 22px;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__prev--rtl {
  left: auto;
  right: 22px;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__next {
  right: 22px;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__next--rtl {
  right: auto;
  left: 22px;
}
.DayPickerNavigation--horizontal .DayPickerNavigation__prev--default svg,
.DayPickerNavigation--horizontal .DayPickerNavigation__next--default svg {
  height: 19px;
  width: 19px;
  fill: #82888a;
}

.DayPickerNavigation--vertical {
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 52px;
  width: 100%;
  z-index: 2;
}
.DayPickerNavigation--vertical .DayPickerNavigation__prev,
.DayPickerNavigation--vertical .DayPickerNavigation__next {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 50%;
}
.DayPickerNavigation--vertical .DayPickerNavigation__next--default {
  border-left: 0;
}
.DayPickerNavigation--vertical .DayPickerNavigation__prev--default,
.DayPickerNavigation--vertical .DayPickerNavigation__next--default {
  text-align: center;
  font-size: 2.5em;
  padding: 5px;
}
.DayPickerNavigation--vertical .DayPickerNavigation__prev--default svg,
.DayPickerNavigation--vertical .DayPickerNavigation__next--default svg {
  height: 42px;
  width: 42px;
  fill: #484848;
}

.DayPickerNavigation--vertical-scrollable {
  position: relative;
}
.DayPickerNavigation--vertical-scrollable .DayPickerNavigation__next {
  width: 100%;
}

.DayPickerKeyboardShortcuts__show,
.DayPickerKeyboardShortcuts__close {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
}
.DayPickerKeyboardShortcuts__show:active,
.DayPickerKeyboardShortcuts__close:active {
  outline: none;
}

.DayPickerKeyboardShortcuts__show {
  width: 22px;
  position: absolute;
  z-index: 2;
}

.DayPickerKeyboardShortcuts__show--bottom-right {
  border-top: 26px solid transparent;
  border-right: 33px solid #00a699;
  bottom: 0;
  right: 0;
}
.DayPickerKeyboardShortcuts__show--bottom-right:hover {
  border-right: 33px solid #008489;
}
.DayPickerKeyboardShortcuts__show--bottom-right .DayPickerKeyboardShortcuts__show_span {
  bottom: 0;
  right: -28px;
}

.DayPickerKeyboardShortcuts__show--top-right {
  border-bottom: 26px solid transparent;
  border-right: 33px solid #00a699;
  top: 0;
  right: 0;
}
.DayPickerKeyboardShortcuts__show--top-right:hover {
  border-right: 33px solid #008489;
}
.DayPickerKeyboardShortcuts__show--top-right .DayPickerKeyboardShortcuts__show_span {
  top: 1px;
  right: -28px;
}

.DayPickerKeyboardShortcuts__show--top-left {
  border-bottom: 26px solid transparent;
  border-left: 33px solid #00a699;
  top: 0;
  left: 0;
}
.DayPickerKeyboardShortcuts__show--top-left:hover {
  border-left: 33px solid #008489;
}
.DayPickerKeyboardShortcuts__show--top-left .DayPickerKeyboardShortcuts__show_span {
  top: 1px;
  left: -28px;
}

.DayPickerKeyboardShortcuts__show_span {
  color: #fff;
  position: absolute;
}

.DayPickerKeyboardShortcuts__panel {
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  margin: 33px;
}

.DayPickerKeyboardShortcuts__title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.DayPickerKeyboardShortcuts__list {
  list-style: none;
  padding: 0;
}

.DayPickerKeyboardShortcuts__close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
}
.DayPickerKeyboardShortcuts__close svg {
  height: 15px;
  width: 15px;
  fill: #cacccd;
}
.DayPickerKeyboardShortcuts__close svg:hover, .DayPickerKeyboardShortcuts__close svg:focus {
  fill: #82888a;
}
.DayPickerKeyboardShortcuts__close:active {
  outline: none;
}

.KeyboardShortcutRow {
  margin: 6px 0;
}

.KeyboardShortcutRow__key-container {
  display: inline-block;
  white-space: nowrap;
  text-align: right;
  margin-right: 6px;
}

.KeyboardShortcutRow__key {
  font-family: monospace;
  font-size: 12px;
  text-transform: uppercase;
  background: #f2f2f2;
  padding: 2px 6px;
}

.KeyboardShortcutRow__action {
  display: inline;
  word-break: break-word;
  margin-left: 8px;
}

.DayPickerKeyboardShortcuts__panel--block .KeyboardShortcutRow {
  margin-bottom: 16px;
}
.DayPickerKeyboardShortcuts__panel--block .KeyboardShortcutRow__key-container {
  width: auto;
  text-align: left;
  display: inline;
}
.DayPickerKeyboardShortcuts__panel--block .KeyboardShortcutRow__action {
  display: inline;
}

.DateInput {
  font-weight: 200;
  font-size: 18px;
  line-height: 24px;
  color: #757575;
  margin: 0;
  padding: 8px;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle;
}

.DateInput--with-caret::before,
.DateInput--with-caret::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: auto;
  border: 10px solid transparent;
  border-top: 0;
  left: 22px;
  z-index: 2;
}

.DateInput--with-caret::before {
  top: 62px;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.DateInput--with-caret::after {
  top: 63px;
  border-bottom-color: #fff;
}

.DateInput--disabled {
  background: #cacccd;
}

.DateInput__input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  height: 100%;
  width: 100%;
}
.DateInput__input[readonly] {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.DateInput__display-text {
  padding: 4px 8px;
  white-space: nowrap;
  overflow: hidden;
}

.DateInput__display-text--has-input {
  color: #484848;
}

.DateInput__display-text--focused {
  background: #99ede6;
  border-color: #99ede6;
  border-radius: 3px;
  color: #007a87;
}

.DateInput__display-text--disabled {
  font-style: italic;
}

.screen-reader-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.DateRangePicker {
  position: relative;
  display: inline-block;
}

.DateRangePicker__picker {
  z-index: 1;
  background-color: #fff;
  position: absolute;
  top: 72px;
}

.DateRangePicker__picker--rtl {
  direction: rtl;
}

.DateRangePicker__picker--direction-left {
  left: 0;
}

.DateRangePicker__picker--direction-right {
  right: 0;
}

.DateRangePicker__picker--portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.DateRangePicker__picker--full-screen-portal {
  background-color: #fff;
}

.DateRangePicker__close {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2;
}
.DateRangePicker__close svg {
  height: 15px;
  width: 15px;
  fill: #cacccd;
}
.DateRangePicker__close:hover, .DateRangePicker__close:focus {
  color: #b0b3b4;
  text-decoration: none;
}

.DateRangePickerInput {
  background-color: #fff;
  border: 1px solid #cacccd;
  display: inline-block;
}

.DateRangePickerInput--disabled {
  background: #cacccd;
}

.DateRangePickerInput--rtl {
  direction: rtl;
}

.DateRangePickerInput__arrow {
  display: inline-block;
  vertical-align: middle;
}

.DateRangePickerInput__arrow svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px;
}

.DateRangePickerInput__clear-dates {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 10px 0 5px;
}

.DateRangePickerInput__clear-dates svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle;
}

.DateRangePickerInput__clear-dates--hide {
  visibility: hidden;
}

.DateRangePickerInput__clear-dates:focus,
.DateRangePickerInput__clear-dates--hover {
  background: #dbdbdb;
  border-radius: 50%;
}

.DateRangePickerInput__calendar-icon {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px;
}
.DateRangePickerInput__calendar-icon svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle;
}

.SingleDatePicker {
  position: relative;
  display: inline-block;
}

.SingleDatePicker__picker {
  z-index: 1;
  background-color: #fff;
  position: absolute;
  top: 72px;
}

.SingleDatePicker__picker--rtl {
  direction: rtl;
}

.SingleDatePicker__picker--direction-left {
  left: 0;
}

.SingleDatePicker__picker--direction-right {
  right: 0;
}

.SingleDatePicker__picker--portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.SingleDatePicker__picker--full-screen-portal {
  background-color: #fff;
}

.SingleDatePicker__close {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2;
}
.SingleDatePicker__close svg {
  height: 15px;
  width: 15px;
  fill: #cacccd;
}
.SingleDatePicker__close:hover, .SingleDatePicker__close:focus {
  color: #b0b3b4;
  text-decoration: none;
}

.SingleDatePickerInput {
  background-color: #fff;
  border: 1px solid #dbdbdb;
}

.SingleDatePickerInput--rtl {
  direction: rtl;
}

.SingleDatePickerInput__clear-date {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 10px 0 5px;
}

.SingleDatePickerInput__clear-date svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle;
}

.SingleDatePickerInput__clear-date--hide {
  visibility: hidden;
}

.SingleDatePickerInput__clear-date:focus,
.SingleDatePickerInput__clear-date--hover {
  background: #dbdbdb;
  border-radius: 50%;
}

.SingleDatePickerInput__calendar-icon {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px;
}
.SingleDatePickerInput__calendar-icon svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle;
}

.products-container:after, .artist-attribution__body:after, .artist-attribution:after {
  clear: both;
  content: "";
  display: table;
}

.grid-container {
  max-width: 58.75rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  position: relative;
}
.grid-container:after {
  content: " ";
  display: block;
  clear: both;
}

.select-menu-dropdown__menuTitle, .select-menu-dropdown__item, .productCell__category, .artist-attribution__name, .artist-attribution__location {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.legacyGlobalStyles html {
  box-sizing: border-box;
}
.legacyGlobalStyles html,
.legacyGlobalStyles body {
  font-size: 100%;
}
.legacyGlobalStyles .columns,
.legacyGlobalStyles *:before,
.legacyGlobalStyles *:after {
  box-sizing: border-box;
}
.legacyGlobalStyles img {
  -ms-interpolation-mode: bicubic;
}

.row {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}
.row.collapse .row {
  margin-left: 0;
  margin-right: 0;
}
.row .row {
  margin: 0 -0.625em;
  max-width: none;
  width: auto;
}
.row .row:before, .row .row:after {
  content: " ";
  display: table;
}
.row .row:after {
  clear: both;
}
.row .row.collapse {
  margin: 0;
  max-width: none;
  width: auto;
}
.row .row.collapse:before, .row .row.collapse:after {
  content: " ";
  display: table;
}
.row .row.collapse:after {
  clear: both;
}

.column,
.columns {
  padding-left: 0.625em;
  padding-right: 0.625em;
  width: 100%;
  float: left;
}

.column + .column:last-child,
.column + .columns:last-child,
.columns + .column:last-child,
.columns + .columns:last-child {
  float: right;
}
.column + .column.end,
.column + .columns.end,
.columns + .column.end,
.columns + .columns.end {
  float: left;
}

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .small-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .small-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .small-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .small-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .small-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .small-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .small-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .small-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .small-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .small-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .small-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .small-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .small-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .small-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .small-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .small-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .small-0 {
    width: 0;
    display: none;
  }
  .small-1 {
    width: 8.3333333333%;
  }
  .small-2 {
    width: 16.6666666667%;
  }
  .small-3 {
    width: 25%;
  }
  .small-4 {
    width: 33.3333333333%;
  }
  .small-5 {
    width: 41.6666666667%;
  }
  .small-6 {
    width: 50%;
  }
  .small-7 {
    width: 58.3333333333%;
  }
  .small-8 {
    width: 66.6666666667%;
  }
  .small-9 {
    width: 75%;
  }
  .small-10 {
    width: 83.3333333333%;
  }
  .small-11 {
    width: 91.6666666667%;
  }
  .small-12 {
    width: 100%;
  }
  .small-offset-0 {
    margin-left: 0 !important;
  }
  .small-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .small-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .small-offset-3 {
    margin-left: 25% !important;
  }
  .small-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .small-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .small-offset-6 {
    margin-left: 50% !important;
  }
  .small-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .small-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .small-offset-9 {
    margin-left: 75% !important;
  }
  .small-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .small-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered,
  .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none;
  }
  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left;
  }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }
  .row.small-collapse > .column,
  .row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.small-uncollapse > .column,
  .row.small-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .phone-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .phone-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .phone-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .phone-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .phone-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .phone-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .phone-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .phone-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .phone-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .phone-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .phone-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .phone-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .phone-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .phone-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .phone-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .phone-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .phone-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .phone-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .phone-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .phone-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .phone-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .phone-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .phone-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .phone-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .phone-0 {
    width: 0;
    display: none;
  }
  .phone-1 {
    width: 8.3333333333%;
  }
  .phone-2 {
    width: 16.6666666667%;
  }
  .phone-3 {
    width: 25%;
  }
  .phone-4 {
    width: 33.3333333333%;
  }
  .phone-5 {
    width: 41.6666666667%;
  }
  .phone-6 {
    width: 50%;
  }
  .phone-7 {
    width: 58.3333333333%;
  }
  .phone-8 {
    width: 66.6666666667%;
  }
  .phone-9 {
    width: 75%;
  }
  .phone-10 {
    width: 83.3333333333%;
  }
  .phone-11 {
    width: 91.6666666667%;
  }
  .phone-12 {
    width: 100%;
  }
  .phone-offset-0 {
    margin-left: 0 !important;
  }
  .phone-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .phone-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .phone-offset-3 {
    margin-left: 25% !important;
  }
  .phone-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .phone-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .phone-offset-6 {
    margin-left: 50% !important;
  }
  .phone-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .phone-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .phone-offset-9 {
    margin-left: 75% !important;
  }
  .phone-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .phone-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .phone-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.phone-centered,
  .columns.phone-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.phone-uncentered,
  .columns.phone-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.phone-centered:last-child,
  .columns.phone-centered:last-child {
    float: none;
  }
  .column.phone-uncentered:last-child,
  .columns.phone-uncentered:last-child {
    float: left;
  }
  .column.phone-uncentered.opposite,
  .columns.phone-uncentered.opposite {
    float: right;
  }
  .row.phone-collapse > .column,
  .row.phone-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.phone-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.phone-uncollapse > .column,
  .row.phone-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .tablet-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .tablet-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .tablet-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .tablet-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .tablet-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .tablet-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .tablet-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .tablet-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .tablet-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .tablet-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .tablet-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .tablet-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .tablet-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .tablet-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .tablet-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .tablet-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .tablet-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .tablet-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .tablet-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .tablet-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .tablet-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .tablet-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .tablet-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .tablet-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .tablet-0 {
    width: 0;
    display: none;
  }
  .tablet-1 {
    width: 8.3333333333%;
  }
  .tablet-2 {
    width: 16.6666666667%;
  }
  .tablet-3 {
    width: 25%;
  }
  .tablet-4 {
    width: 33.3333333333%;
  }
  .tablet-5 {
    width: 41.6666666667%;
  }
  .tablet-6 {
    width: 50%;
  }
  .tablet-7 {
    width: 58.3333333333%;
  }
  .tablet-8 {
    width: 66.6666666667%;
  }
  .tablet-9 {
    width: 75%;
  }
  .tablet-10 {
    width: 83.3333333333%;
  }
  .tablet-11 {
    width: 91.6666666667%;
  }
  .tablet-12 {
    width: 100%;
  }
  .tablet-offset-0 {
    margin-left: 0 !important;
  }
  .tablet-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .tablet-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .tablet-offset-3 {
    margin-left: 25% !important;
  }
  .tablet-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .tablet-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .tablet-offset-6 {
    margin-left: 50% !important;
  }
  .tablet-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .tablet-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .tablet-offset-9 {
    margin-left: 75% !important;
  }
  .tablet-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .tablet-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .tablet-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.tablet-centered,
  .columns.tablet-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.tablet-uncentered,
  .columns.tablet-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.tablet-centered:last-child,
  .columns.tablet-centered:last-child {
    float: none;
  }
  .column.tablet-uncentered:last-child,
  .columns.tablet-uncentered:last-child {
    float: left;
  }
  .column.tablet-uncentered.opposite,
  .columns.tablet-uncentered.opposite {
    float: right;
  }
  .row.tablet-collapse > .column,
  .row.tablet-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.tablet-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.tablet-uncollapse > .column,
  .row.tablet-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .mobile-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .mobile-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .mobile-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .mobile-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .mobile-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .mobile-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .mobile-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .mobile-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .mobile-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .mobile-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .mobile-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .mobile-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .mobile-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .mobile-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .mobile-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .mobile-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .mobile-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .mobile-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .mobile-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .mobile-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .mobile-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .mobile-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .mobile-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .mobile-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .mobile-0 {
    width: 0;
    display: none;
  }
  .mobile-1 {
    width: 8.3333333333%;
  }
  .mobile-2 {
    width: 16.6666666667%;
  }
  .mobile-3 {
    width: 25%;
  }
  .mobile-4 {
    width: 33.3333333333%;
  }
  .mobile-5 {
    width: 41.6666666667%;
  }
  .mobile-6 {
    width: 50%;
  }
  .mobile-7 {
    width: 58.3333333333%;
  }
  .mobile-8 {
    width: 66.6666666667%;
  }
  .mobile-9 {
    width: 75%;
  }
  .mobile-10 {
    width: 83.3333333333%;
  }
  .mobile-11 {
    width: 91.6666666667%;
  }
  .mobile-12 {
    width: 100%;
  }
  .mobile-offset-0 {
    margin-left: 0 !important;
  }
  .mobile-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .mobile-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .mobile-offset-3 {
    margin-left: 25% !important;
  }
  .mobile-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .mobile-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .mobile-offset-6 {
    margin-left: 50% !important;
  }
  .mobile-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .mobile-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .mobile-offset-9 {
    margin-left: 75% !important;
  }
  .mobile-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .mobile-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .mobile-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.mobile-centered,
  .columns.mobile-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.mobile-uncentered,
  .columns.mobile-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.mobile-centered:last-child,
  .columns.mobile-centered:last-child {
    float: none;
  }
  .column.mobile-uncentered:last-child,
  .columns.mobile-uncentered:last-child {
    float: left;
  }
  .column.mobile-uncentered.opposite,
  .columns.mobile-uncentered.opposite {
    float: right;
  }
  .row.mobile-collapse > .column,
  .row.mobile-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.mobile-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.mobile-uncollapse > .column,
  .row.mobile-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media (min-width: 961px) and (max-width: 1199px) {
  .desktop-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .desktop-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .desktop-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .desktop-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .desktop-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .desktop-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .desktop-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .desktop-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .desktop-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .desktop-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .desktop-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .desktop-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .desktop-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .desktop-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .desktop-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .desktop-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .desktop-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .desktop-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .desktop-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .desktop-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .desktop-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .desktop-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .desktop-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .desktop-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .desktop-0 {
    width: 0;
    display: none;
  }
  .desktop-1 {
    width: 8.3333333333%;
  }
  .desktop-2 {
    width: 16.6666666667%;
  }
  .desktop-3 {
    width: 25%;
  }
  .desktop-4 {
    width: 33.3333333333%;
  }
  .desktop-5 {
    width: 41.6666666667%;
  }
  .desktop-6 {
    width: 50%;
  }
  .desktop-7 {
    width: 58.3333333333%;
  }
  .desktop-8 {
    width: 66.6666666667%;
  }
  .desktop-9 {
    width: 75%;
  }
  .desktop-10 {
    width: 83.3333333333%;
  }
  .desktop-11 {
    width: 91.6666666667%;
  }
  .desktop-12 {
    width: 100%;
  }
  .desktop-offset-0 {
    margin-left: 0 !important;
  }
  .desktop-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .desktop-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .desktop-offset-3 {
    margin-left: 25% !important;
  }
  .desktop-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .desktop-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .desktop-offset-6 {
    margin-left: 50% !important;
  }
  .desktop-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .desktop-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .desktop-offset-9 {
    margin-left: 75% !important;
  }
  .desktop-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .desktop-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .desktop-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.desktop-centered,
  .columns.desktop-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.desktop-uncentered,
  .columns.desktop-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.desktop-centered:last-child,
  .columns.desktop-centered:last-child {
    float: none;
  }
  .column.desktop-uncentered:last-child,
  .columns.desktop-uncentered:last-child {
    float: left;
  }
  .column.desktop-uncentered.opposite,
  .columns.desktop-uncentered.opposite {
    float: right;
  }
  .row.desktop-collapse > .column,
  .row.desktop-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.desktop-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.desktop-uncollapse > .column,
  .row.desktop-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media (min-width: 961px) {
  .desktop-and-lg-desktop-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .desktop-and-lg-desktop-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .desktop-and-lg-desktop-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .desktop-and-lg-desktop-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .desktop-and-lg-desktop-0 {
    width: 0;
    display: none;
  }
  .desktop-and-lg-desktop-1 {
    width: 8.3333333333%;
  }
  .desktop-and-lg-desktop-2 {
    width: 16.6666666667%;
  }
  .desktop-and-lg-desktop-3 {
    width: 25%;
  }
  .desktop-and-lg-desktop-4 {
    width: 33.3333333333%;
  }
  .desktop-and-lg-desktop-5 {
    width: 41.6666666667%;
  }
  .desktop-and-lg-desktop-6 {
    width: 50%;
  }
  .desktop-and-lg-desktop-7 {
    width: 58.3333333333%;
  }
  .desktop-and-lg-desktop-8 {
    width: 66.6666666667%;
  }
  .desktop-and-lg-desktop-9 {
    width: 75%;
  }
  .desktop-and-lg-desktop-10 {
    width: 83.3333333333%;
  }
  .desktop-and-lg-desktop-11 {
    width: 91.6666666667%;
  }
  .desktop-and-lg-desktop-12 {
    width: 100%;
  }
  .desktop-and-lg-desktop-offset-0 {
    margin-left: 0 !important;
  }
  .desktop-and-lg-desktop-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .desktop-and-lg-desktop-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .desktop-and-lg-desktop-offset-3 {
    margin-left: 25% !important;
  }
  .desktop-and-lg-desktop-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .desktop-and-lg-desktop-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .desktop-and-lg-desktop-offset-6 {
    margin-left: 50% !important;
  }
  .desktop-and-lg-desktop-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .desktop-and-lg-desktop-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .desktop-and-lg-desktop-offset-9 {
    margin-left: 75% !important;
  }
  .desktop-and-lg-desktop-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .desktop-and-lg-desktop-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .desktop-and-lg-desktop-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.desktop-and-lg-desktop-centered,
  .columns.desktop-and-lg-desktop-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.desktop-and-lg-desktop-uncentered,
  .columns.desktop-and-lg-desktop-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.desktop-and-lg-desktop-centered:last-child,
  .columns.desktop-and-lg-desktop-centered:last-child {
    float: none;
  }
  .column.desktop-and-lg-desktop-uncentered:last-child,
  .columns.desktop-and-lg-desktop-uncentered:last-child {
    float: left;
  }
  .column.desktop-and-lg-desktop-uncentered.opposite,
  .columns.desktop-and-lg-desktop-uncentered.opposite {
    float: right;
  }
  .row.desktop-and-lg-desktop-collapse > .column,
  .row.desktop-and-lg-desktop-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.desktop-and-lg-desktop-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.desktop-and-lg-desktop-uncollapse > .column,
  .row.desktop-and-lg-desktop-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
}
@media only screen and (min-width:40.0625em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .medium-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .medium-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .medium-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .medium-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .medium-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .medium-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .medium-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .medium-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .medium-0 {
    width: 0;
    display: none;
  }
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-0 {
    margin-left: 0 !important;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .medium-offset-3 {
    margin-left: 25% !important;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .medium-offset-6 {
    margin-left: 50% !important;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .medium-offset-9 {
    margin-left: 75% !important;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none;
  }
  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left;
  }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }
  .row.medium-collapse > .column,
  .row.medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.medium-uncollapse > .column,
  .row.medium-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
}
@media only screen and (min-width:64.0625em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .large-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .large-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .large-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .large-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .large-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .large-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .large-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .large-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .large-0 {
    width: 0;
    display: none;
  }
  .large-1 {
    width: 8.3333333333%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-3 {
    width: 25%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-6 {
    width: 50%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-9 {
    width: 75%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-0 {
    margin-left: 0 !important;
  }
  .large-offset-1 {
    margin-left: 8.3333333333% !important;
  }
  .large-offset-2 {
    margin-left: 16.6666666667% !important;
  }
  .large-offset-3 {
    margin-left: 25% !important;
  }
  .large-offset-4 {
    margin-left: 33.3333333333% !important;
  }
  .large-offset-5 {
    margin-left: 41.6666666667% !important;
  }
  .large-offset-6 {
    margin-left: 50% !important;
  }
  .large-offset-7 {
    margin-left: 58.3333333333% !important;
  }
  .large-offset-8 {
    margin-left: 66.6666666667% !important;
  }
  .large-offset-9 {
    margin-left: 75% !important;
  }
  .large-offset-10 {
    margin-left: 83.3333333333% !important;
  }
  .large-offset-11 {
    margin-left: 91.6666666667% !important;
  }
  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered,
  .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none;
  }
  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left;
  }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }
  .row.large-collapse > .column,
  .row.large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.large-uncollapse > .column,
  .row.large-uncollapse > .columns {
    padding-left: 0.625em;
    padding-right: 0.625em;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
}
.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

[class*=block-grid-] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem;
}
[class*=block-grid-]:before, [class*=block-grid-]:after {
  content: " ";
  display: table;
}
[class*=block-grid-]:after {
  clear: both;
}
[class*=block-grid-] > li {
  display: block;
  box-sizing: border-box;
  float: left;
  height: auto;
  padding: 0 0.625rem 1.25rem;
}

@media only screen {
  .small-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .small-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .small-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .small-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .small-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .small-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .small-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .small-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .small-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .small-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .small-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .small-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .small-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width:40.0625em) {
  .medium-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .medium-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .medium-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .medium-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width:64.0625em) {
  .large-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .large-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .large-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .large-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .large-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .large-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .large-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .large-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .large-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .large-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .large-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .large-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.SocialMediaShareButton {
  display: inline-block;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.divider {
  height: 1px;
  overflow: hidden;
  background-color: #eee;
  border-bottom: 1px solid #fff;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.panel {
  background-color: #fff;
}

.panel--shaded {
  background-color: #f9f9f9;
  border: 1px solid #eee;
}
@media (min-width: 0px) and (max-width: 599px) {
  .panel--shaded {
    border-right-width: 0;
    border-left-width: 0;
  }
}

.panel__cell {
  padding: 0px 20px 24px 20px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .panel__cell {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.panel__footer {
  background-color: #fff;
}

/*!
 * @license
 * MyFonts Webfont Build ID 2863306, 2014-08-14T14:49:27-0400
 *
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are
 * explicitly restricted from using the Licensed Webfonts(s).
 *
 * You may obtain a valid license at the URLs below.
 *
 * Webfont: Brandon Grotesque Regular by HVD Fonts
 * URL: http://www.myfonts.com/fonts/hvdfonts/brandon-grotesque/regular/
 *
 * Webfont: Brandon Grotesque Light by HVD Fonts
 * URL: http://www.myfonts.com/fonts/hvdfonts/brandon-grotesque/light/
 *
 * Webfont: Brandon Grotesque Bold by HVD Fonts
 * URL: http://www.myfonts.com/fonts/hvdfonts/brandon-grotesque/bold/
 *
 *
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=2863306
 * Licensed pageviews: 50,000,000
 * Webfonts copyright: Copyright (c) 2009 by Hannes von Doehren. All rights reserved.
 *
 *  2014 MyFonts Inc
 */
@font-face {
  font-family: "brandon-grotesque";
  font-style: normal;
  font-weight: 400;
  src: url("https://minted-fonts.mintedcdn.net/brandon-grotesque/400.woff");
}
@font-face {
  font-family: "brandon-grotesque";
  font-style: normal;
  font-weight: 300;
  src: url("https://minted-fonts.mintedcdn.net/brandon-grotesque/300.woff");
}
@font-face {
  font-family: "brandon-grotesque";
  font-style: normal;
  font-weight: 700;
  src: url("https://minted-fonts.mintedcdn.net/brandon-grotesque/700.woff");
}
@font-face {
  font-family: "daniel";
  font-style: normal;
  font-weight: 400;
  src: url("https://minted-fonts.mintedcdn.net/daniel/400.woff");
}
@font-face {
  font-family: "daniel";
  font-style: normal;
  font-weight: 700;
  src: url("https://minted-fonts.mintedcdn.net/daniel/700.woff");
}
@font-face {
  font-family: "archer";
  font-style: normal;
  font-weight: 400;
  src: url("https://minted-fonts.mintedcdn.net/archer/400.woff");
}
@font-face {
  font-family: "archer";
  font-style: normal;
  font-weight: 500;
  src: url("https://minted-fonts.mintedcdn.net/archer/500.woff");
}
@font-face {
  font-family: "archer";
  font-style: italic;
  font-weight: 500;
  src: url("https://minted-fonts.mintedcdn.net/archer/italic/500.woff");
}
@font-face {
  font-family: "archer";
  font-style: normal;
  font-weight: 600;
  src: url("https://minted-fonts.mintedcdn.net/archer/600.woff");
}
@font-face {
  font-family: "archer";
  font-style: normal;
  font-weight: 700;
  src: url("https://minted-fonts.mintedcdn.net/archer/700.woff");
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
.legacyGlobalStyles {
  /**
  * Remove default margin.
  */
  /* HTML5 display definitions
    ========================================================================== */
  /**
  * Correct `block` display not defined for any HTML5 element in IE 8/9.
  * Correct `block` display not defined for `details` or `summary` in IE 10/11
  * and Firefox.
  * Correct `block` display not defined for `main` in IE 11.
  */
  /**
  * 1. Correct `inline-block` display not defined in IE 8/9.
  * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  */
  /**
  * Prevent displaying `audio` without controls in Mobile Safari 4/5/6/7.
  */
  /**
  * Address `[hidden]` styling not present in IE 8/9/10.
  * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
  */
  /* Links
    ========================================================================== */
  /**
  * Remove the gray background color from active links in IE 10.
  */
  /**
  * Improve readability of focused elements when they are also in an
  * active/hover state.
  */
  /* Text-level semantics
    ========================================================================== */
  /**
  * Address inconsistent styling of `abbr[title]`.
  * 1. Correct styling in Firefox 39 and Opera 12.
  * 2. Correct missing styling in Chrome, Edge, IE, Opera, and Safari.
  */
  /**
  * Address inconsistent styling of b and strong.
  * 1. Correct duplicate application of `bolder` in Safari 6.0.2.
  * 2. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+.
  */
  /**
  * Address styling not present in Safari and Chrome.
  */
  /**
  * Address variable `h1` font-size and margin within `section` and `article`
  * contexts in Firefox 4+, Safari, and Chrome.
  */
  /**
  * Address styling not present in IE 8/9.
  */
  /**
  * Address inconsistent and variable font size in all browsers.
  */
  /**
  * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  */
  /* Embedded content
    ========================================================================== */
  /**
  * Remove border when inside `a` element in IE 8/9/10.
  */
  /**
  * Correct overflow not hidden in IE 9/10/11.
  */
  /* Grouping content
    ========================================================================== */
  /**
  * Address margin not present in IE 8/9 and Safari.
  */
  /**
  * Address inconsistent styling of `hr`.
  * 1. Correct `box-sizing` set to `border-box` in Firefox.
  * 2. Correct `overflow` set to `hidden` in IE 8/9/10/11 and Edge 12.
  */
  /**
  * Contain overflow in all browsers.
  */
  /**
  * 1. Correct inheritance and scaling of font-size for preformatted text.
  * 2. Address odd `em`-unit font size rendering in all browsers.
  */
  /* Forms
    ========================================================================== */
  /**
  * Known limitation: by default, Chrome and Safari on OS X allow very limited
  * styling of `select`, unless a `border` property is set.
  */
  /**
  * 1. Correct font properties not being inherited.
  * 2. Address margins set differently in Firefox 4+, Safari, and Chrome.
  */
  /**
  * Address `overflow` set to `hidden` in IE 8/9/10/11.
  */
  /**
  * Address inconsistent `text-transform` inheritance for `button` and `select`.
  * All other form control elements do not inherit `text-transform` values.
  * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  * Correct `select` style inheritance in Firefox.
  */
  /**
  * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  *    and `video` controls.
  * 2. Correct inability to style clickable `input` types in iOS.
  * 3. Improve usability and consistency of cursor style between image-type
  *    `input` and others.
  */
  /**
  * Re-set default cursor for disabled elements.
  */
  /**
  * Remove inner padding and border in Firefox 4+.
  */
  /**
  * Restore focus style in Firefox 4+ (unset by a rule above)
  */
  /**
  * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  * the UA stylesheet.
  */
  /**
  * It's recommended that you don't attempt to style these elements.
  * Firefox's implementation doesn't respect box-sizing, padding, or width.
  *
  * 1. Address box sizing set to `content-box` in IE 8/9/10.
  * 2. Remove excess padding in IE 8/9/10.
  */
  /**
  * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  * `font-size` values of the `input`, it causes the cursor style of the
  * decrement button to change from `default` to `text`.
  */
  /**
  * Address `appearance` set to `searchfield` in Safari and Chrome.
  */
  /**
  * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  * Safari (but not Chrome) clips the cancel button when the search input has
  * padding (and `textfield` appearance).
  */
  /**
  * Define consistent border, margin, and padding.
  */
  /**
  * 1. Correct `color` not being inherited in IE 8/9/10/11.
  * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  */
  /**
  * Remove default vertical scrollbar in IE 8/9/10/11.
  */
  /**
  * Restore font weight (unset by a rule above).
  * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  */
}
.legacyGlobalStyles html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
.legacyGlobalStyles body {
  margin: 0;
}
.legacyGlobalStyles article,
.legacyGlobalStyles aside,
.legacyGlobalStyles details,
.legacyGlobalStyles figcaption,
.legacyGlobalStyles figure,
.legacyGlobalStyles footer,
.legacyGlobalStyles header,
.legacyGlobalStyles main,
.legacyGlobalStyles menu,
.legacyGlobalStyles nav,
.legacyGlobalStyles section,
.legacyGlobalStyles summary {
  display: block;
}
.legacyGlobalStyles audio,
.legacyGlobalStyles canvas,
.legacyGlobalStyles progress,
.legacyGlobalStyles video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
.legacyGlobalStyles audio:not([controls]) {
  display: none;
  height: 0;
}
.legacyGlobalStyles [hidden],
.legacyGlobalStyles template {
  display: none;
}
.legacyGlobalStyles a {
  background-color: transparent;
}
.legacyGlobalStyles a:active,
.legacyGlobalStyles a:hover {
  outline: 0;
}
.legacyGlobalStyles abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
.legacyGlobalStyles b,
.legacyGlobalStyles strong {
  font-weight: inherit; /* 1 */
}
.legacyGlobalStyles b,
.legacyGlobalStyles strong {
  font-weight: bolder; /* 2 */
}
.legacyGlobalStyles dfn {
  font-style: italic;
}
.legacyGlobalStyles h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.legacyGlobalStyles mark {
  background-color: #ff0;
  color: #000;
}
.legacyGlobalStyles small {
  font-size: 80%;
}
.legacyGlobalStyles sub,
.legacyGlobalStyles sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.legacyGlobalStyles sup {
  top: -0.5em;
}
.legacyGlobalStyles sub {
  bottom: -0.25em;
}
.legacyGlobalStyles img {
  border: 0;
}
.legacyGlobalStyles svg:not(:root) {
  overflow: hidden;
}
.legacyGlobalStyles figure {
  margin: 1em 40px;
}
.legacyGlobalStyles hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
.legacyGlobalStyles pre {
  overflow: auto;
}
.legacyGlobalStyles code,
.legacyGlobalStyles kbd,
.legacyGlobalStyles pre,
.legacyGlobalStyles samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
.legacyGlobalStyles button,
.legacyGlobalStyles input,
.legacyGlobalStyles optgroup,
.legacyGlobalStyles select,
.legacyGlobalStyles textarea {
  font: inherit; /* 1 */
  margin: 0; /* 2 */
}
.legacyGlobalStyles button {
  overflow: visible;
}
.legacyGlobalStyles button,
.legacyGlobalStyles select {
  text-transform: none;
}
.legacyGlobalStyles button,
.legacyGlobalStyles html input[type=button],
.legacyGlobalStyles input[type=reset],
.legacyGlobalStyles input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
.legacyGlobalStyles button[disabled],
.legacyGlobalStyles html input[disabled] {
  cursor: default;
}
.legacyGlobalStyles button::-moz-focus-inner,
.legacyGlobalStyles input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.legacyGlobalStyles button:-moz-focusring,
.legacyGlobalStyles input:-moz-focusring {
  outline: 1px dotted ButtonText;
}
.legacyGlobalStyles input {
  line-height: normal;
}
.legacyGlobalStyles input[type=checkbox],
.legacyGlobalStyles input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
.legacyGlobalStyles input[type=number]::-webkit-inner-spin-button,
.legacyGlobalStyles input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
.legacyGlobalStyles input[type=search] {
  -webkit-appearance: textfield;
}
.legacyGlobalStyles input[type=search]::-webkit-search-cancel-button,
.legacyGlobalStyles input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.legacyGlobalStyles fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
.legacyGlobalStyles legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}
.legacyGlobalStyles textarea {
  overflow: auto;
}
.legacyGlobalStyles optgroup {
  font-weight: bold;
}

.app__content {
  position: relative;
  z-index: 1;
}
.app__content.responsive-header {
  z-index: 201;
  position: relative;
}
.app__modal-dialogs {
  position: relative;
  z-index: 1;
  z-index: 202;
}
.app .lg-grid-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.alert {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  padding: 10px 12px;
  border-radius: 6px;
  border-width: 1px;
  border-style: solid;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
      align-items: baseline;
}
.alert--warning {
  color: #565547;
  background-color: #fcf8e3;
  border-color: #faf2cc;
}

.alert__icon {
  margin-right: 10px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.artist-bio {
  display: inline-block;
  background-color: #f9f9f9;
  padding: 20px;
  box-sizing: border-box;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artist-bio {
    text-align: center;
  }
}
.artist-bio__about {
  margin: 0 0 20px 0;
}
.artist-bio .artist-attribution {
  margin: 20px 0;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artist-bio .artist-attribution {
    display: inline-block;
    margin: 0;
  }
}
.artist-bio__bio {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  margin: 20px 0 35px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .artist-bio__bio {
    display: block;
  }
}
.artist-bio__store-url {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
  display: block;
  margin: 15px 0 0 0;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.products-container:before, .artist-attribution__body:before, .artist-attribution:before, .products-container:after, .artist-attribution__body:after, .artist-attribution:after {
  content: " ";
  display: table;
}
.products-container:after, .artist-attribution__body:after, .artist-attribution:after {
  clear: both;
}

.attribute-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.attribute-list__item {
  -ms-flex-align: baseline;
      align-items: baseline;
  border-bottom: 1px dotted #ccc;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 10px;
}
.attribute-list__item:only-child {
  padding-top: 0;
}
.attribute-list__label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  display: inline-block;
  margin: 0;
  width: 33%;
}
.attribute-list__attribute {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  color: #999;
  display: inline-block;
  margin: 0;
  width: 66%;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.breadcrumbs {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}
.breadcrumbs .breadcrumbs__crumb {
  text-decoration: none;
  text-transform: uppercase;
  color: #8AAD3A;
}
.breadcrumbs .breadcrumbs__crumb:hover {
  text-decoration: underline;
  color: #6c872d;
}
.breadcrumbs .breadcrumbs__crumb:after {
  text-decoration: none;
  display: inline-block;
  color: #666;
  content: "::";
  margin: 0 10px;
  position: relative;
  top: -2px;
}
.breadcrumbs .breadcrumbs__crumb:last-child {
  color: #999;
  padding-right: 0;
}
.breadcrumbs .breadcrumbs__crumb:last-child:hover {
  text-decoration: none;
}
.breadcrumbs .breadcrumbs__crumb:last-child:after {
  content: none;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.btn {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #8AAD3A;
  background-image: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  line-height: 42px;
  padding: 2px 24px 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  /*Spinner*/
  /*
   * Margin calculation:
   * = ((btn line-height - height of spinner (16)) / 2) - spinner border (5)
   * Note: btn line-height can change per size (i.e. btn vs. btn--small)
   */
}
@media (min-width: 0px) and (max-width: 960px) {
  .btn {
    display: block;
    width: 100%;
  }
}
.btn:hover {
  background-color: #6c872d;
  color: #fff;
  text-decoration: none;
}
.btn:active {
  color: #fff;
  background-color: #5c7427;
}
.btn--small {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  line-height: 33px;
  padding-left: 20px;
  padding-right: 20px;
}
.btn--small .btn--spinner {
  margin: 3.5px auto;
}
.btn--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
  font-size: 0.5rem;
  font-weight: 600;
  padding-left: 10px;
  padding-right: 10px;
}
.btn--ghost {
  color: #8AAD3A;
  box-shadow: inset 0 0 0 2px #8AAD3A;
  background-color: white;
}
.btn--ghost:hover {
  color: white;
  border-color: #6c872d;
}
.btn--ghost:hover .icon {
  fill: white;
}
.btn--ghost:active {
  color: white;
  border-color: #5c7427;
}
.btn--ghost .icon {
  fill: #8AAD3A;
}
.btn--borderless {
  color: #8AAD3A;
  background-color: white;
}
.btn--borderless:hover {
  color: #6c872d;
  background-color: white;
}
.btn--borderless:active {
  color: #6c872d;
  background-color: white;
}
.btn--borderless .btn__icon {
  fill: #8AAD3A;
}
.btn--minimal {
  padding: 0;
}
.btn__icon {
  fill: white;
  height: 21px;
  vertical-align: text-bottom !important;
  width: 21px;
}
.btn__icon:first-child {
  margin-right: 10px;
}
.btn--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.btn--spinnerContainer {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
}
.btn--spinner {
  margin: 8px 8px 8px 0px;
  font-size: 10px;
  position: absolute;
  text-indent: -9999em;
  border-top: 0.5em solid rgba(255, 255, 255, 0.2);
  border-right: 0.5em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
  border-left: 0.5em solid #fff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  -moz-animation: load8 1.1s infinite linear;
}
.btn--spinner--green {
  border-top: 0.5em solid #8AAD3A;
  border-right: 0.5em solid #8AAD3A;
  border-bottom: 0.5em solid #8AAD3A;
}
.btn--spinner, .btn--spinner:after {
  border-radius: 50%;
  width: 16px;
  height: 16px;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.btn--spinnerPlaceholder {
  color: #8AAD3A;
}
.btn--spinnerPlaceholderDisabled {
  color: #fff;
}

.btn-group .btn {
  display: inline-block;
  margin-right: 10px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .btn-group .btn {
    display: block;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.btn-group .btn:last-child {
  margin-right: 0;
}
.btn-group .btn--flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  margin-right: 10px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.carousel {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.carousel__prev-button,
.carousel__next-button {
  position: relative;
  padding: 10px;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel__inactive-button {
  opacity: 0.5;
}

.carousel__content {
  overflow: hidden;
  display: inline-block;
  position: relative;
}

.carousel__list {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.carousel__list-item {
  display: inline-block;
  float: left;
}

.carousel__pagination {
  background-color: #fff;
  padding: 3px 6px 4px 6px;
  display: inline-block;
  list-style-type: none;
  border-radius: 14px;
  position: absolute;
  top: 10px;
  line-height: 1;
  right: 10px;
  margin: 0;
  opacity: 0.85;
}

.carousel__pagination-item {
  display: inline-block;
  padding: 2px;
  margin: 0;
}
.carousel__pagination-item circle {
  stroke: #666;
  stroke-width: 2;
  fill: #eee !important;
}

.carousel__pagination-item--active circle {
  fill: #666 !important;
}

.carousel__list-slide-transition-enter {
  opacity: 0;
}

.carousel__list-slide-transition-enter-active {
  opacity: 0.01;
}

.carousel__list-fade-transition-enter {
  opacity: 0.01;
}

.carousel__list-fade-transition-enter-active {
  opacity: 1;
}

.carousel__list-fade-transition-leave {
  opacity: 1;
}

.carousel__list-fade-transition-leave-active {
  opacity: 0.01;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.carousel-with-title {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  background-color: #eee;
  padding: 20px;
  width: 100%;
}
.carousel-with-title__title {
  margin-top: 0;
}
.carousel-with-title .carousel {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-flow: row;
      flex-flow: row;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  margin-top: -40px;
}
.carousel-with-title .carousel__content {
  padding-top: 40px;
  width: 100%;
}
.carousel-with-title .carousel__pagination {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  background-color: transparent;
  right: 0px;
  padding: 0px;
}
.carousel-with-title__view-item {
  margin-top: -20px;
  cursor: pointer;
  display: block;
  text-align: center;
  float: left;
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
}
.carousel-with-title__view-item:first-child {
  margin-left: 0;
}
.carousel-with-title__view-name {
  margin: 0;
  margin-top: 2%;
}
.carousel-with-title__image-src {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  color: transparent;
  height: 0;
  overflow: hidden;
  padding-bottom: 85%;
  text-indent: 101%;
  white-space: nowrap;
  width: 100%;
  margin-top: 5%;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.checkbox {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}
.checkbox__wrapper--soft-disabled {
  opacity: 0.5;
  cursor: default;
}
.checkbox__text {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  width: 75%;
}
.checkbox__input {
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  border-radius: 5px;
  border: 2px solid #ccc;
  cursor: pointer;
  display: inline-block;
  padding-bottom: 0;
  vertical-align: middle;
}
.checkbox__input--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.checkbox__input:after {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  background: transparent;
  color: #8AAD3A;
  content: "✓";
  font-size: 22px;
  position: relative;
  bottom: 0.25rem;
  visibility: hidden;
}
.checkbox__input:checked:after {
  visibility: visible;
}
.checkbox__input:focus {
  outline: 0;
}

.Envelopes input[type=checkbox]:after {
  font-size: 12px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

@media (min-width: 0px) and (max-width: 960px) {
  .color-picker {
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
    overflow-x: scroll;
    white-space: nowrap;
  }
}
.color-picker__list {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.color-picker__list--2-up {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.color-picker__item {
  background-repeat: no-repeat;
  border: none;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1px;
  margin-bottom: 4px;
  padding: 2px;
}
.color-picker__item:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 2px #666;
}
.color-picker__item:last-child {
  margin-right: 0;
}
.color-picker__item--active {
  box-shadow: inset 0 0 0 2px black;
}
.color-picker__item--active .color-swatch {
  border: 1px solid #fff;
}
.color-picker__item--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.color-picker__item--custom-color .color-swatch {
  background-size: contain;
}
.color-picker__color-name {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  margin-top: 5px;
}

.color-swatch {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin: 2px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .color-swatch {
    width: 40px;
    height: 40px;
  }
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.SingleDatePickerInput .DateInput__display-text {
  padding: 0px;
}
.SingleDatePickerInput .DateInput__display-text--focused {
  background-color: transparent;
  color: #8AAD3A;
}

.SingleDatePicker .DateInput--with-caret::before {
  top: 43px;
}
.SingleDatePicker .DateInput--with-caret::after {
  top: 44px;
}
.SingleDatePicker__picker {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  /* This was added to deal with a bug on safari on iOS where the date-picker
     is hidden behind the main page's div */
  z-index: 100;
}

.SingleDatePicker .SingleDatePicker__picker {
  top: 55px;
}

.DayPicker {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}
.DayPicker .CalendarDay {
  text-align: center;
}
.DayPicker .CalendarDay--hovered {
  background-color: #8AAD3A;
  color: #fff;
}
.DayPicker .CalendarDay--selected {
  background-color: #8AAD3A;
  color: #fff;
  border-color: transparent;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.dropdown {
  position: relative;
  margin-bottom: 0;
  display: inline-block;
}
@media (min-width: 0px) and (max-width: 599px) {
  .dropdown {
    display: block;
  }
}
.dropdown__control {
  border: 2px solid #ccc;
  box-sizing: border-box;
  position: relative;
  width: 100%;
}
.dropdown__selected {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  background-color: #fff;
  cursor: pointer;
  min-width: 150px;
  padding: 5px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown__selected:before, .dropdown__selected:after {
  content: " ";
  display: table;
}
.dropdown__selected:after {
  clear: both;
}
.dropdown__arrow {
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 8px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .dropdown__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.dropdown__menu {
  -webkit-overflow-scrolling: touch;
  background-color: white;
  border-color: #ccc;
  border-style: solid;
  border-top-style: none;
  border-width: 2px;
  box-sizing: border-box;
  float: left;
  max-height: 250px;
  min-width: 150px;
  overflow: scroll;
  overflow-x: hidden;
  position: absolute;
  width: 100%;
  z-index: 5;
}
.dropdown__option {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  cursor: pointer;
  min-width: 150px;
  padding: 7px 10px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .dropdown__option {
    font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.375;
    padding-top: 13px;
    padding-bottom: 12px;
  }
}
.dropdown__option--read-only {
  cursor: text;
  background: none;
  text-transform: capitalize;
  padding-left: 0;
}
.dropdown__menu-option:hover {
  background-color: #eee;
  margin-bottom: 0px;
}
.dropdown__menu-option--is-selected {
  background-color: #eee;
}
.dropdown__menu-option--is-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.dropdown--open {
  margin-bottom: 2px;
}
.dropdown--open .dropdown__control {
  border-bottom: 0px;
}
.dropdown--open .dropdown__menu {
  border-top: 2px solid #ccc;
}

.dropdown-with-image {
  padding: 2px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.dropdownContainer {
  margin-bottom: 0px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
}
.dropdownContainer__bubbleRight {
  width: 0;
  height: 0;
  position: absolute;
  z-index: 20;
}
.dropdownContainer__bubbleRight__bubble {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
  position: relative;
  left: 106px;
  top: -7px;
  width: 15px;
  height: 15px;
  display: block;
  color: white;
  background-color: #8AAD3A;
  border-radius: 50%;
  text-align: center;
  line-height: normal;
  font-weight: 500;
  font-size: 11px;
}
.dropdownContainer__control {
  border: 2px solid #ccc;
  box-sizing: border-box;
  position: relative;
  width: 124px;
  z-index: 10;
  background-color: #fff;
}
.dropdownContainer__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  background-color: #fff;
  cursor: pointer;
  padding: 6px 5px;
  height: 19px;
  line-height: normal;
}
.dropdownContainer__title__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 89px;
  display: inline-block;
}
.dropdownContainer__arrow {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 13px;
}
.dropdownContainer__arrow__icon {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #8AAD3A;
}
.dropdownContainer__menu {
  -webkit-overflow-scrolling: touch;
  background-color: #f9f9f9;
  border-color: #ccc;
  border-style: solid;
  border-width: 2px;
  box-sizing: border-box;
  float: left;
  overflow: visible;
  position: absolute;
  z-index: 5;
  top: 48px;
}
.dropdownContainer__menu__content {
  overflow: auto;
  max-height: 200px;
}
.dropdownContainer__menu__footer {
  height: 55px;
  border-top-color: #ccc;
  border-top-style: solid;
  border-top-width: 2px;
  overflow: hidden;
  text-align: right;
}
.dropdownContainer__menu__footer a {
  width: auto;
  margin: 10px 7px;
  display: inline-block;
}
.dropdownContainer__menu__footer .btn {
  display: inline-block;
}
.dropdownContainer--small__menu {
  width: 184px;
}
.dropdownContainer--medium__menu {
  width: 364px;
}
.dropdownContainer--medium__menu__footer .btn {
  padding-left: 60px;
  padding-right: 60px;
}
.dropdownContainer--large__menu {
  width: 544px;
}
.dropdownContainer--large__menu__footer .btn {
  padding-left: 60px;
  padding-right: 60px;
}

.dropdownContainer--open {
  margin-bottom: 2px;
}
.dropdownContainer--open .dropdownContainer__control {
  border-bottom-color: #f9f9f9;
}
.dropdownContainer--open .dropdownContainer__title {
  background-color: #f9f9f9;
  padding-bottom: 22px;
}
.dropdownContainer--open .dropdownContainer__arrow__icon {
  border-bottom: 5px solid #8AAD3A;
  border-top: none;
}

.dropdownContainer--sidebar {
  padding-left: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.dropdownContainer--sidebar .dropdownContainer__arrow {
  left: 10px;
  right: auto;
}
.dropdownContainer--sidebar .dropdownContainer__control {
  width: 100%;
  border: none;
  z-index: 0;
  background-color: #f9f9f9;
}
.dropdownContainer--sidebar .dropdownContainer__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 20px;
  background-color: #f9f9f9;
  height: auto;
  line-height: 25px;
}
.dropdownContainer--sidebar .dropdownContainer__title__text {
  max-width: none;
  padding-right: 0;
  padding-left: 6px;
}
.dropdownContainer--sidebar .dropdownContainer__menu {
  width: 100%;
  position: relative;
  top: 0;
  border: none;
  border-bottom: 1px solid #ccc;
}
.dropdownContainer--sidebar .dropdownContainer__menu .dropdownContainer__menu__content {
  overflow: auto;
  max-height: none;
}

.dropdownContainer--sidebar.dropdownContainer--open .dropdownContainer__title {
  padding-bottom: 10px;
}

.dropdownContainer--overlay {
  padding-left: 0;
  display: block;
  width: 100%;
}
.dropdownContainer--overlay .dropdownContainer__arrow {
  display: none;
}
.dropdownContainer--overlay .dropdownContainer__control {
  width: 100%;
  height: 45px;
  padding-top: 15px;
  border: none;
  z-index: 0;
  background-color: transparent;
}
.dropdownContainer--overlay .dropdownContainer__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  background-color: transparent;
}
.dropdownContainer--overlay .dropdownContainer__title__text {
  max-width: none;
  padding-right: 0;
}
.dropdownContainer--overlay .dropdownContainer__menu {
  width: 100%;
  position: relative;
  top: 0;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
}
.dropdownContainer--overlay .dropdownContainer__menu .dropdownContainer__menu__content {
  overflow: auto;
  max-height: none;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.favorite-prompt__content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  width: 145px;
  height: 40px;
  vertical-align: middle;
  line-height: 40px;
}
.favorite-prompt__highlight-text {
  color: #af4150;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.form__group {
  border: none;
  margin: 0;
  padding: 0;
}
.form__group--grid .form__field--inline .form__label {
  width: 33.33%;
  float: left;
  margin-right: 2.1276595745%;
  float: none;
}
.form__group--grid .form__field--inline .form__control {
  width: 66.66%;
  float: left;
  margin-right: 2.1276595745%;
  float: none;
}
.form__group legend {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.form__row {
  margin-bottom: 20px;
}
.form__row:last-child {
  margin-bottom: 0;
}

.form__field--inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: baseline;
      align-items: baseline;
  display: -webkit-flex; /* Safari */
  -webkit-justify-content: flex-start; /* Safari 6.1+ */
}
@media (min-width: 0px) and (max-width: 960px) {
  .form__field--inline {
    display: block;
  }
}
.form__field--inline .form__label {
  display: inline-block;
  padding: 0;
  vertical-align: top;
}
@media (min-width: 0px) and (max-width: 960px) {
  .form__field--inline .form__label {
    display: block;
    margin-bottom: 10px;
    padding: 0;
  }
}
.form__field--inline .form__control {
  display: inline-block;
  vertical-align: top;
}

.form__label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  display: block;
  padding-bottom: 3px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .form__label {
    font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    font-weight: 700;
  }
}

.form__control[type=email],
.form__control[type=number],
.form__control[type=password],
.form__control[type=search],
.form__control[type=tel],
.form__control[type=text],
.form__control[type=url],
textarea.form__control {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 2px solid #ccc;
  box-sizing: border-box;
  display: block;
  margin: 0;
  outline: 0;
  padding: 7px 8px 6px;
  height: auto;
  width: auto;
}

::-webkit-input-placeholder {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

:-moz-placeholder {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

::-moz-placeholder {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

:-ms-input-placeholder {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.form__control[type=checkbox] + .form__label {
  display: inline-block;
  margin-left: 5px;
  padding-bottom: 0;
}

input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  border-radius: 5px;
  border: 2px solid #ccc;
  cursor: pointer;
  display: inline-block;
  height: 23px;
  vertical-align: top;
  width: 23px;
}
input[type=checkbox]:after {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  background: transparent;
  color: #8AAD3A;
  content: "✓";
  font-size: 22px;
  position: relative;
  bottom: 0.25rem;
  visibility: hidden;
}
input[type=checkbox]:checked:after {
  visibility: visible;
}
input[type=checkbox]:focus {
  outline: 0;
}

textarea.form__control {
  width: 100%;
}

.form__control__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  padding-top: 5px;
}

.form__control__caption--right {
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
  padding-top: 0;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.form-factor {
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  width: 95px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .form-factor {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    text-align: left;
    width: auto;
  }
}
.form-factor--active .form-factor__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
}
.form-factor--active .form-factor__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
}
.form-factor--active .form-factor__price {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
}
.form-factor--active .form-factor__secondary__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  color: #333;
  display: block;
}
@media (min-width: 0px) and (max-width: 960px) {
  .form-factor__primary {
    padding-left: 30px;
    position: relative;
  }
}
.form-factor__secondary__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  color: #999;
  display: block;
}
.form-factor__icon {
  margin-bottom: 4px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .form-factor__icon {
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    height: 100%;
    -ms-flex-pack: center;
        justify-content: center;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
  }
}
.form-factor__title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}
.form-factor__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}
.form-factor__price {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.image-button {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
}
.image-button__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  margin: 10px;
  width: 100px;
  height: 30px;
}
.image-button__caption__editable {
  overflow: auto;
  outline: none;
}
.image-button__caption__not-editable {
  text-align: center;
}
.image-button__caption__not-editable__full-width {
  text-align: center;
  width: 100%;
}
.image-button__caption__container {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
.image-button__image-wrapper {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  width: 100px;
  height: 100px;
}
.image-button__image {
  max-width: 100px;
  max-height: 100px;
}
.image-button__image__svg_icon {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
}
.image-button__image__svg_icon__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
  text-align: center;
  margin-top: 5px;
}

.image-button-container {
  width: 300px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.select-menu-dropdown__menuTitle, .select-menu-dropdown__item, .productCell__category, .artist-attribution__name, .artist-attribution__location {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.products-container:before, .artist-attribution__body:before, .artist-attribution:before, .products-container:after, .artist-attribution__body:after, .artist-attribution:after {
  content: " ";
  display: table;
}
.products-container:after, .artist-attribution__body:after, .artist-attribution:after {
  clear: both;
}

.artist-attribution__container {
  display: inline-block;
}

.artist-attribution {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  /* TODO: this was done to center some of the attribution text fields.
     Consider splitting out different classes for left vs center aligned. */
  -ms-flex-pack: center;
      justify-content: center;
}
.artist-attribution--small .artist-attribution__img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-top: 0;
}
.artist-attribution .text {
  margin: 0;
}
.artist-attribution__img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border: 1px solid white;
  border-radius: 50px;
  margin-right: 5px;
  min-width: 50px;
  overflow: hidden;
}
.artist-attribution__img img {
  width: 100%;
  height: 100%;
}
.artist-attribution__body {
  display: inline-block;
}
.artist-attribution__signature {
  width: 130px;
  display: inline-block;
  margin-bottom: 5px;
}
.artist-attribution__location {
  clear: left;
  margin: 0;
  max-width: 165px;
}
.artist-attribution__name {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  margin: 0;
  max-width: 165px;
}
.artist-attribution__name .artist-attribution__name-by {
  margin-right: 5px;
}
.artist-attribution__name a, .artist-attribution__name a:link, .artist-attribution__name a:hover {
  color: #666;
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.media__img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.media__children-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-pack: center;
      justify-content: center;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.modal-dialog.login-overlay {
  z-index: 500;
}
.modal-dialog.login-overlay .modal-dialog__wrapper.login-overlay__wrapper {
  top: 50%;
  max-height: 100%;
}

.modal-dialog {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.modal-dialog__backdrop {
  -ms-flex-align: center;
      align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}
.modal-dialog__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  background-color: white;
  border: 1px solid #ccc;
  margin: 0 auto;
  width: 50%;
  position: relative;
  top: 10%;
  max-height: 100%;
  overflow: auto;
}
@media (min-width: 0px) and (max-width: 599px) {
  .modal-dialog__wrapper {
    box-sizing: border-box;
    height: 100%;
    max-width: 100%;
    top: 0;
    width: 100vw;
  }
}
.modal-dialog__wrapper:focus {
  outline: 0;
}
.modal-dialog__no-scroll {
  max-height: 100%;
  overflow: visible;
}
@media (min-width: 0px) and (max-width: 599px) {
  .modal-dialog__no-scroll {
    overflow: auto;
  }
}
.modal-dialog__content {
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
}
.modal-dialog__content-scroll {
  overflow: auto;
}
.modal-dialog__footer {
  border-top: 1px solid #ccc;
  overflow: hidden;
}
.modal-dialog__header {
  margin-bottom: 10px;
  padding-right: 40px;
  padding-left: 20px;
  padding-top: 20px;
}
.modal-dialog__title {
  margin: 0;
}
.modal-dialog__close {
  background-color: transparent;
  position: absolute;
  right: 0px;
  top: 0px;
  width: auto;
}
.modal-dialog__close:hover {
  background-color: transparent;
}
.modal-dialog__button-bar {
  text-align: right;
  margin-top: 30px;
}
.modal-dialog__button-bar .btn {
  margin-left: 10px;
}
.modal-dialog__button-bar .btn:first-child {
  margin-left: 0;
}

.modal-dialog--narrow .modal-dialog__wrapper {
  min-width: 25rem;
  width: 30%;
}
@media (min-width: 0px) and (max-width: 599px) {
  .modal-dialog--narrow .modal-dialog__wrapper {
    width: 100vw;
    min-width: 0;
  }
}

.modal-dialog--md__wrapper {
  max-height: 70%;
  top: 20%;
}
.modal-dialog--md__title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.modal-dialog--md__footer {
  box-sizing: border-box;
  text-align: right;
  height: 55px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 10px;
  background-color: #f9f9f9;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.nav {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}
.nav--icon {
  margin-top: 10px;
  margin-bottom: 10px;
}
.nav--icon li {
  margin-left: 3px;
  margin-right: 3px;
  padding: 0;
}
.nav--icon li:first-child, .nav--icon li:last-child {
  padding-left: 0;
  padding-right: 0;
}
.nav--bold .nav__item {
  font-size: 1.125rem;
  padding: 5px 20px;
}
.nav--bold .nav__item--active {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  font-size: 1.125rem;
  font-weight: 500;
}
.nav--bold .nav__item--active a, .nav--bold .nav__item--active a:hover {
  color: #333;
  text-decoration: none;
}
.nav--bold .nav__item a {
  color: #666;
}
.nav--center {
  text-align: center;
}
.nav__item {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding: 5px 10px;
}
.nav__item:first-child {
  padding-left: 0;
  padding-right: 10px;
}
.nav__item:last-child {
  padding-left: 10px;
  padding-right: 0;
}
.nav__item.nav__separator {
  border-right: 1px dotted #999;
  padding: 0;
  margin: 0 10px;
  min-height: 22px;
  width: 1px;
}
.nav__item.nav__separator:before, .nav__item.nav__separator:after {
  content: " ";
  display: table;
}
.nav__item.nav__separator:after {
  clear: both;
}
.nav__item a {
  text-decoration: none;
  color: #999;
}
.nav__item a:hover {
  color: #666;
  text-decoration: underline;
}

.nav--tabs,
.nav--tabs-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #666;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  display: block;
  padding: 0;
  margin: auto;
  text-align: center;
  font-weight: 300;
}
.nav--tabs .nav__item,
.nav--tabs-bold .nav__item {
  border-bottom: 3px solid transparent;
  font-size: 0.875rem;
  display: inline-block;
  padding: 25px 0px 20px 0px;
  margin: 0px 20px 0px 20px;
}
.nav--tabs .nav__item:hover,
.nav--tabs-bold .nav__item:hover {
  border-color: rgba(138, 173, 58, 0.5);
  cursor: pointer;
}
.nav--tabs .nav__item:first-child, .nav--tabs .nav__item:last-child,
.nav--tabs-bold .nav__item:first-child,
.nav--tabs-bold .nav__item:last-child {
  padding-left: 0;
  padding-right: 0;
}
.nav--tabs .nav__item:hover,
.nav--tabs-bold .nav__item:hover {
  color: #333;
}
.nav--tabs .nav__item.nav__item--active,
.nav--tabs-bold .nav__item.nav__item--active {
  border-color: #8AAD3A;
  color: #333;
  font-weight: 700;
}

.nav--tabs-bold {
  text-transform: none;
}
.nav--tabs-bold .nav__item {
  font-size: 1.125rem;
  padding: 10px 5px;
}

.nav--caps {
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.nav--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}
.nav--caption > li {
  color: #666;
}
.nav--caption > li.nav__label {
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: none;
}
.nav--caption > li a:link {
  color: #666;
}

.nav--graywell {
  background-color: #fff;
  margin: 0;
  padding: 0;
}
.nav--graywell .nav__item {
  padding: 0 0 15px 0;
  margin: 0;
  cursor: pointer;
}
.nav--graywell .nav__item--active.nav__item--pointer::before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #eee;
}
.nav--graywell .nav__item--active.nav__item--pointer::after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: -1px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f9f9f9;
}

.off-canvas {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  overflow: hidden;
  height: 100px;
  margin-top: -100px;
  transition: margin-top 0.8s ease-in-out;
}

.off-canvas__content {
  position: relative;
  width: 100%;
}

.off-canvas.off-canvas--open {
  margin-top: 0px;
}

.off-canvas__close {
  cursor: pointer;
  padding: 5px;
  position: absolute;
  right: 0;
  top: 0;
}

.off-canvas--notification {
  height: 50px;
  margin-top: -50px;
}

.off-canvas--banner {
  height: 300px;
  margin-top: -220px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.product {
  height: auto;
  padding: 0;
  text-align: center;
}
.product--cp {
  width: 215px;
}
.product--pd {
  width: 473px;
}
.product--th {
  width: 80px;
}
.product--md {
  width: 215px;
}
.product__flex {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  text-align: left;
}
.product__details {
  margin-left: 35px;
}
.product__details .artist-attribution {
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding-bottom: 5px;
}
.product .artist-attribution {
  margin: 5px 0 10px;
}
.product .artist-attribution__name {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}
.product .artist-attribution__body {
  float: none;
}
.product__rationale {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  color: #86504c;
  margin: 10px 0 5px;
}
.product__favorite-button {
  margin-top: 5px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.select-menu-dropdown__menuTitle, .select-menu-dropdown__item, .productCell__category, .artist-attribution__location, .artist-attribution__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.productCell {
  display: inline-block;
  text-align: center;
  padding-bottom: 5px;
  padding-top: 5px;
  border: 1px solid #fff;
}
.productCell:hover .productCell__caption {
  visibility: initial;
}
@media (min-width: 961px) {
  .productCell {
    width: 235px;
  }
  .productCell:hover {
    border: 1px solid #ccc;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .productCell {
    width: 235px;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell {
    width: 150px;
  }
}
.productCell__captionAndImages {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-align: end;
      align-items: flex-end;
  -webkit-align-items: flex-end;
}
.productCell__captionAndImages--landscape .productCell__caption--envelope-hero, .productCell__captionAndImages--square .productCell__caption--envelope-hero {
  top: -10px;
}
@media (min-width: 961px) {
  .productCell__captionAndImages {
    height: 240px;
  }
  .productCell__captionAndImages--2-up {
    height: 28rem;
    margin: 0 auto;
    width: 27rem;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .productCell__captionAndImages {
    height: 220px;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__captionAndImages {
    height: 150px;
  }
}
.productCell__caption {
  transition: opacity 0.4s ease-in-out;
  padding-bottom: 5px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  position: relative;
  top: 0;
  visibility: hidden;
  /* set to make ellipsis same color as body */
  color: #999;
}
@media (min-width: 961px) {
  .productCell__caption {
    width: 190px;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .productCell__caption {
    width: 190px;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__caption {
    width: 140px;
  }
}
.productCell__caption--outer {
  position: relative;
  margin-bottom: -8px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__caption--outer {
    display: none;
  }
}
.productCell__caption--outer--2-up {
  height: 15rem;
}
.productCell__caption--wrapper {
  height: 33px; /* Fallback for non-webkit */
}
.productCell__caption--inner {
  max-height: 33px; /* Fallback for non-webkit */
  position: relative;
  bottom: 0;
}
.productCell__caption--title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  font-weight: 700;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.5;
  display: inline;
}
.productCell__caption--hyphen {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  padding: 0 4px;
  display: inline;
}
.productCell__caption--body {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  display: inline;
  padding-left: 0.3125rem;
}
.productCell__merchLine {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  text-transform: lowercase;
  color: #86504c;
  padding: 5px 0;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__merchLine {
    display: none;
  }
}
.productCell__shareFavLine {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  font-weight: 300;
  color: #ccc;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
  /* need links green, but separators (|) gray */
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__shareFavLine {
    font-size: 0.75rem;
    padding-bottom: 0;
  }
}
.productCell__shareFavLine a {
  color: #8AAD3A;
}
.productCell__shareFavLine .icon--heart {
  margin: 0;
}
@media (min-width: 961px) {
  .productCell__shareFavLine a:hover {
    color: #6c872d;
    text-decoration: underline;
  }
}
.productCell__orderSample, .productCell__shareRemoveFav {
  display: inline-block;
  padding-top: 0.3125rem;
}
.productCell__shareRemoveFav--mobile {
  display: none;
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__shareRemoveFav--mobile {
    display: initial;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__shareRemoveFav--desktop {
    display: none;
  }
}
.productCell__colorPicker .color-picker {
  overflow: visible;
}
.productCell__colorPicker .color-picker .color-picker__item {
  margin-bottom: 0;
}
.productCell__colorPicker .color-picker .color-picker__item:hover {
  box-shadow: inset 0 0 0 1px #999;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__colorPicker .color-picker .color-picker__item {
    pointer-events: none;
    cursor: default;
  }
  .productCell__colorPicker .color-picker .color-picker__item:hover {
    box-shadow: none;
  }
}
.productCell__colorPicker .color-picker__color-name {
  display: none;
}
.productCell__colorPicker .color-picker__item {
  padding: 1px;
}
.productCell__colorPicker .color-picker__item--active {
  box-shadow: inset 0 0 0 1px #666;
}
.productCell__colorPicker .color-picker__item--active .color-swatch {
  border: 1px solid #ccc;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__colorPicker .color-picker__item--active {
    box-shadow: none;
  }
  .productCell__colorPicker .color-picker__item--active .color-swatch {
    border: 1px solid #ccc;
  }
}
.productCell__colorPicker .color-swatch {
  margin: 1px;
  width: 15px;
  height: 15px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__colorPicker .color-swatch {
    width: 10px;
    height: 10px;
  }
}
.productCell__badge {
  padding-top: 5px;
  padding-bottom: 3px;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
}
.productCell__badge img {
  max-width: 100%;
}
.productCell__cycler {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -webkit-align-items: flex-end;
}
.productCell__cycler--image {
  max-width: 206px;
  max-height: 206px;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
}
.productCell__cycler--image--container {
  position: absolute;
  min-width: 158px;
  min-height: 158px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -ms-transform: translate(-50%, -100%);
}
@media (min-width: 961px) {
  .productCell__cycler--image--container--2-up {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-align: center;
        align-items: center;
    -webkit-align-items: center;
    height: 27rem;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__cycler--image--container {
    position: relative;
    -webkit-transform: none;
            transform: none;
    min-width: initial;
    min-height: initial;
  }
}
.productCell__cycler--image.current-image {
  opacity: 1;
}
.productCell__cycler--image.shadow {
  box-shadow: 0 0 1px 2px #eee;
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__cycler--image {
    max-width: 9.375rem;
    max-height: 9.375rem;
  }
}
.productCell__cycler .fade-appear {
  opacity: 0.01;
}
.productCell__cycler .fade-appear.fade-appear-active {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
@media (min-width: 600px) and (max-width: 960px) {
  .productCell__cycler {
    width: 206px;
    display: block;
  }
}
@media (min-width: 961px) {
  .productCell__img-size--2-up {
    max-height: 24.75rem;
    max-width: 24.75rem;
  }
}
@media (min-width: 961px) {
  .productCell__img-size--3-up {
    max-height: 16rem;
    max-width: 16rem;
  }
}
@media (min-width: 961px) {
  .productCell__img-size--4-up {
    max-height: 206px;
    max-width: 206px;
  }
}
.productCell__favorite--mobile {
  float: left;
  clear: left;
  width: 100%;
  height: 1.43rem;
}
@media (min-width: 961px) {
  .productCell__favorite--mobile {
    display: none;
  }
}
.productCell__favorite--mobile .svg-wrapper .icon {
  margin: 0;
}
.productCell__favoriteWithShareContainer--mobile {
  float: left;
  clear: left;
  width: 50%;
  height: 1.43rem;
}
@media (min-width: 961px) {
  .productCell__favoriteWithShareContainer--mobile {
    display: none;
  }
}
.productCell__favoriteWithShareContainer--mobile .svg-wrapper .icon {
  margin: 0.3125rem 0rem 0rem 3.125rem;
}
.productCell__shareContainer--mobile {
  float: right;
  clear: right;
  width: 50%;
  height: 23px;
}
@media (min-width: 961px) {
  .productCell__shareContainer--mobile {
    display: none;
  }
}
.productCell__shareContainer--mobile .svg-wrapper .icon {
  margin: 0rem 3.125rem 0.125rem 0;
}
.productCell__interactions {
  width: 12.5rem;
  margin: 0 auto;
  padding-top: 0.625rem;
  padding-bottom: 1rem;
}
.productCell__interactions--container {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__interactions {
    display: none;
  }
}
.productCell__interactions--noQuicklook {
  width: 12.5rem;
  margin: 0 auto;
  padding-top: 0.625rem;
  padding-bottom: 1rem;
}
.productCell__interactions--noQuicklook--container {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -webkit-align-items: center;
  width: 100%;
  padding: 0.3125rem 0;
  border-bottom: 1px solid #ccc;
}
.productCell__interactions--noQuicklook--container .productCell__favorite {
  margin-left: auto;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell__interactions--noQuicklook {
    display: none;
  }
}
.productCell__interactions--2-up {
  width: 24.75rem;
  padding-top: 0rem;
}
.productCell__quicklook {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  text-transform: uppercase;
  color: #8AAD3A;
  font-size: 0.75rem;
  line-height: 12px;
  cursor: pointer;
}
.productCell__quicklook:hover {
  text-decoration: underline;
  color: #6c872d;
}
.productCell .productCell__designName {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
  max-height: 2.6rem; /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  text-align: center;
  font-weight: 300;
  color: #333;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
}
.productCell .productCell__designName:hover {
  color: #333;
  text-decoration: underline;
}
.productCell__category {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  color: #666;
  display: inline-block;
  text-transform: none;
  padding: 0 15px;
}
.productCell .artist-attribution__body {
  max-width: 160px;
  text-align: left;
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell .artist-attribution__body {
    max-width: 90px;
  }
}
.productCell .productCell__artistName {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  font-weight: 300;
  padding: 5px 0;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell .productCell__artistName {
    display: none;
  }
}
@media (min-width: 961px) {
  .productCell .productCell__artistName:hover {
    color: #333;
    text-decoration: underline;
  }
}
.productCell .productCell__artistName--mobile {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  font-weight: 300;
  padding: 5px 0;
  /* enables centering on each row on colorway */
  float: left;
  clear: left;
  width: 100%;
}
@media (min-width: 961px) {
  .productCell .productCell__artistName--mobile {
    display: none;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .productCell .productCell__artistName--mobile {
    font-size: 0.75rem;
    line-height: 12px;
  }
}
.productCell.product-feed {
  width: 170px;
  border: none;
  padding-left: 10px;
  padding-right: 10px;
}
.productCell.product-feed .productCell__cycler {
  -ms-flex-align: start;
      align-items: flex-start;
  -webkit-align-items: flex-start;
  width: 100%;
}
.productCell.product-feed .productCell__cycler--image--container {
  width: 100%;
  top: 0;
  position: relative;
  -webkit-transform: none;
          transform: none;
  min-height: initial;
}
.productCell.product-feed .productCell__cycler--image {
  width: 100%;
  max-width: none;
  max-height: none;
}
.productCell.product-feed .productCell__bottomHalf {
  text-align: left;
  padding-left: 6px;
}
.productCell.product-feed .productCell__bottomHalf .productCell__designName, .productCell.product-feed .productCell__bottomHalf .productCell__category {
  text-align: left;
  padding: 0;
  max-width: 155px;
}
.productCell.product-feed .artist-attribution {
  padding-top: 5px;
}
.productCell.product-feed .artist-attribution__img {
  width: 28px;
  height: 28px;
  min-width: 28px;
}
.productCell.product-feed .artist-attribution__body {
  max-width: 165px;
}
.productCell.product-feed .artist-attribution__location {
  font-size: 11px;
}
.productCell.product-feed .artist-attribution__name {
  font-size: 13px;
}
.productCell.product-feed .productCell__titles {
  padding-bottom: 0.625rem;
}
.productCell.product-feed .productCell__titles--main {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  font-weight: 300;
  padding-bottom: 0.5rem;
}
.productCell.product-feed .productCell__titles--secondary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 961px) {
  .productCell--2-up {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-direction: column;
        flex-direction: column;
    width: 29rem;
    height: 39rem;
  }
  .productCell--2-up__bottomHalf {
    margin-left: 2rem;
    max-width: 60%;
    text-align: left;
  }
}
.productCell__titleAndColorWay--2-up {
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: -webkit-inline-flex;
  width: 100%;
  text-align: left;
}
@media (min-width: 600px) and (max-width: 960px) {
  .productCell__titleAndColorWay--2-up {
    width: 206px;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__titleAndColorWay--2-up {
    width: 150px;
  }
}
.productCell__titleAndColorWay--2-up .productCell--2-up__designName {
  text-align: left;
}
@media (min-width: 961px) {
  .productCell__titleAndColorWay--2-up .productCell--2-up__designName {
    margin-left: 2rem;
    max-width: 55%;
  }
}
.productCell__titleAndColorWay--2-up .productCell__colorPicker {
  text-align: left;
}
@media (min-width: 961px) {
  .productCell__titleAndColorWay--2-up .productCell__colorPicker {
    margin-right: 2rem;
    max-width: 36%;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .productCell__titleAndColorWay--2-up .productCell__colorPicker {
    max-width: 69px;
  }
}

.productCell--3-up {
  padding-bottom: 1.5625rem;
  padding-top: 2.5rem;
}
@media (min-width: 961px) {
  .productCell--3-up {
    width: 19.125rem;
  }
}

.products-container:before, .artist-attribution:before, .artist-attribution__body:before, .products-container:after, .artist-attribution:after, .artist-attribution__body:after {
  content: " ";
  display: table;
}
.products-container:after, .artist-attribution:after, .artist-attribution__body:after {
  clear: both;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.promo-bar {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  text-align: center;
}
.promo-bar a {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.radio-button {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}
.radio-button__list {
  position: relative;
}
.radio-button__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 2%;
  padding-bottom: 2%;
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__item {
    padding: 0;
  }
}
.radio-button__item:first-child {
  padding-top: 0;
}
.radio-button__item:last-child {
  padding-bottom: 0;
}
.radio-button__item--soft-disabled {
  opacity: 0.5;
  cursor: default;
}
.radio-button__input {
  vertical-align: top;
  margin-right: 2%;
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__input {
    display: none;
  }
}
.radio-button__input--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.radio-button__description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.radio-button__label {
  width: 100%;
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__label {
    border: 1px solid #ccc;
    padding: 10px 10px;
    margin-bottom: 2%;
    background-color: #fff;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__label--selected {
    border: 1px solid #666;
  }
}
.radio-button__caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  margin-top: 0;
}
.radio-button__caption--selected {
  color: #666;
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__caption .truncated-text__text--body {
    display: none;
  }
}
@media (min-width: 0px) and (max-width: 960px) {
  .radio-button__caption .truncated-text__more-link {
    display: none;
  }
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.responsive-carousel {
  padding: 0 20px;
}
@media (min-width: 961px) {
  .responsive-carousel.flickity-enabled.is-draggable .flickity-viewport {
    cursor: default;
  }
}
.responsive-carousel.image-border .responsive-image__src {
  border: 1px solid transparent;
}
.responsive-carousel.image-border .is-selected .responsive-image__src {
  border: 1px solid #666;
}
.responsive-carousel .flickity-prev-next-button {
  background: none;
}
.responsive-carousel .flickity-prev-next-button:focus {
  box-shadow: none;
}
.responsive-carousel .flickity-prev-next-button:hover {
  background: none;
}
.responsive-carousel .flickity-prev-next-button.previous {
  left: auto;
  right: 100%;
  margin-right: -20px;
}
.responsive-carousel .flickity-prev-next-button.previous svg {
  left: auto;
  right: 0;
}
.responsive-carousel .flickity-prev-next-button.next {
  right: auto;
  left: 100%;
  margin-left: -20px;
}
.responsive-carousel .flickity-prev-next-button.next svg {
  left: 0;
  right: auto;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.latest.searchable-dropdown input::-webkit-calendar-picker-indicator {
  height: 20px;
  width: 12px;
  margin: 0;
  padding: 0;
  opacity: 0;
}
.latest.searchable-dropdown__control {
  position: relative;
}
.latest.searchable-dropdown__box {
  background-color: white;
  border-color: #ccc;
  border-style: solid;
  border-width: 2px;
  box-sizing: border-box;
  cursor: pointer;
  padding: 8px 8px;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.8rem;
  position: relative;
  margin-bottom: 0;
  width: 80%; /* Fallback for old browser */
  width: calc(100% - 86px); /* Firefox */ /* WebKit */
  width: -o-calc(100% - 86px); /* Opera */
  float: none;
  margin-right: 15px;
  height: 32px;
}
.latest.searchable-dropdown__box--full {
  width: 100%;
}
.latest.searchable-dropdown__box--error {
  border-color: #FF0000;
}
.latest.searchable-dropdown__arrow {
  display: inline-block;
  position: absolute;
  right: 95px;
  top: 10px;
  cursor: pointer;
  pointer-events: none;
}
.latest.searchable-dropdown__arrow--full {
  right: 10px;
  top: 10px;
}
.latest.searchable-dropdown__button {
  vertical-align: top;
  height: 32px;
  line-height: 32px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.select-menu-dropdown__menuTitle, .select-menu-dropdown__item, .artist-attribution__location, .artist-attribution__name, .productCell__category {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.select-menu-dropdown {
  position: relative;
  margin-bottom: 0;
  display: inline-block;
  width: 250px;
}
.select-menu-dropdown__arrow {
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 15px;
}
.select-menu-dropdown__control {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 3px solid transparent;
  display: inline-block;
  padding: 15px 0px 10px 0px;
  margin: 0px 20px;
  border-color: #8AAD3A;
  color: #333;
  position: relative;
  width: 100%;
}
.select-menu-dropdown__control:hover {
  border-color: rgba(138, 173, 58, 0.5);
  cursor: pointer;
}
.select-menu-dropdown__item {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  display: inline-block;
  color: #333;
  position: relative;
  width: 100%;
  padding: 15px 10px;
  border-left: 3px solid transparent;
}
.select-menu-dropdown__item:hover {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  border-color: #8AAD3A;
  cursor: pointer;
  background-color: #eee;
}
.select-menu-dropdown__items {
  width: 100%;
  background-color: #fff;
}
.select-menu-dropdown__menuTitle {
  width: 90%;
  text-align: center;
}
.select-menu-dropdown .tooltip__body {
  /* The max-width is hard-coded here to ensure the tooltip items don't
   * extend passed the parent container. Feel free to overwrite this for
   * other use cases.
   * max-width = select-menu-dropdown.width - (item.padding + item.border)
   */
  max-width: 227px;
  text-align: left;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

@media (min-width: 0px) and (max-width: 960px) {
  .shape-picker {
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    white-space: nowrap;
  }
}
.shape-picker__list {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.shape-picker__item {
  background-repeat: no-repeat;
  display: inline-block;
  line-height: inherit;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 2px;
  position: relative;
  vertical-align: top;
}
.shape-picker__item:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 2px #666;
}
.shape-picker__item:last-child {
  margin-right: 0;
}
.shape-picker__item--active {
  box-shadow: inset 0 0 0 2px black;
}
.shape-picker__item--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.shape-picker__image {
  padding: 1px;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.shareableArtwork {
  margin: 0 auto 0px auto;
  max-width: 100%;
  position: relative;
  text-align: center;
  /*  TODO: In the future when we want to put pinterest
    button in other location, we should move common css
    out of this css class*/
}
.shareableArtwork:hover .artwork__overlay {
  z-index: 1;
  opacity: 1;
}
.shareableArtwork__overlay {
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
@media (min-width: 0px) and (max-width: 599px) {
  .shareableArtwork__overlay {
    display: none;
  }
}
.shareableArtwork__overlay-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
  padding-top: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.shareableArtwork__overlay .share-container {
  padding-top: 5px;
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.shareableArtwork__overlay-btn {
  background-color: rgba(255, 255, 255, 0);
  margin-top: 20px;
}
@media (min-width: 961px) {
  .shareableArtwork__overlay-btn {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.shareableArtwork__overlay-btn:hover {
  background-color: #6c872d;
}
.shareableArtwork__overlay-btn-container {
  width: 70%;
}
@media (min-width: 961px) {
  .shareableArtwork__overlay-btn-container {
    width: 100%;
  }
}
.shareableArtwork__overlay-btn-container .white-btn-text {
  color: #fff;
}
.shareableArtwork__overlay-attribution {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 0px) and (max-width: 599px) {
  .shareableArtwork__overlay-attribution {
    display: none;
  }
}
.shareableArtwork .pinterest__button__topleft {
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  pointer-events: none;
}
@media (min-width: 0px) and (max-width: 599px) {
  .shareableArtwork .pinterest__button__topleft {
    display: none;
  }
}
.shareableArtwork .pinterest__button__topleft .share-container {
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0px;
  left: 0px;
}
.shareableArtwork .pinterest__button__topleft .share-container .trigger {
  width: 0px;
  height: 0px;
  padding-top: 0;
  border-style: solid;
  border-width: 45px 45px 0px 0px;
  border-color: white transparent transparent transparent;
  position: absolute;
  top: 0px;
  left: 0px;
}
.shareableArtwork .pinterest__button__topleft .share-container .trigger .icon--pinterest-round {
  position: absolute;
  top: -46px;
  left: 0px;
  pointer-events: auto;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.share-container__child {
  padding: 4px;
}
.share-container__child:hover {
  cursor: pointer;
}
.share-container__child--bordered {
  border-right: 1px solid #999;
  padding-right: 8px;
  margin-right: 4px;
}
@media (min-width: 0px) and (max-width: 599px) {
  .share-container__child {
    margin: 0 6px;
    padding: 4px 0;
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .share-container .share-container__add-button {
    display: none;
  }
}

.slick-carousel {
  margin: 0 auto;
  padding: 20px 40px;
  width: 80%;
  overflow: hidden;
}
.slick-carousel .slick-initialized .slick-slide {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-justify-content: center;
}
.slick-carousel .slide {
  max-width: 100%;
  height: auto;
}
.slick-carousel .slick-arrow {
  height: 100%;
}
.slick-carousel .slick-arrow .svg-wrapper {
  position: relative;
  top: 50%;
  padding: 0px 3px;
}
.slick-carousel .slick-prev, .slick-carousel .slick-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
}
.slick-carousel .slick-prev {
  left: -40px;
}
.slick-carousel .slick-next {
  right: -40px;
}
.slick-carousel .slick-arrow.slick-disabled {
  display: none !important;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.minted-loader {
  position: relative;
  width: 70px;
  height: 70px;
}

.minted-loader div {
  position: absolute;
  top: 0;
  left: 0;
}

.minted-loader .bkgd {
  width: 68px;
  height: 68px;
  background-color: #fff;
  border-radius: 45px;
  border: solid 1px rgba(0, 0, 0, 0.08);
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}

.minted-loader .spinner {
  width: 70px;
  height: 70px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: spin 1.1s infinite linear;
  animation: spin 1.1s infinite linear;
}

.minted-loader svg {
  display: block;
}

.spinner-loading-message {
  color: #666;
  white-space: nowrap;
  padding-top: 10px;
}

.spinner-scrim {
  left: 0;
  top: 0;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9998;
}

.spinner-scrim-center {
  z-index: 9999;
  position: fixed;
  left: 50%;
  right: 50%;
  top: 50%;
  bottom: 50%;
}

.spinner-scrim-x {
  cursor: pointer;
  cursor: hand;
  z-index: 9999;
  position: fixed;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 40px;
}

.sticky--fixed .sticky__placeholder {
  display: block;
  visibility: hidden;
}
.sticky--fixed .sticky__content {
  position: fixed;
  top: 0;
  left: 0;
}
.sticky--disabled .sticky__placeholder {
  display: none;
}
.sticky--disabled .sticky__content {
  position: relative;
}
.sticky__placeholder {
  display: none;
}
.sticky__content {
  width: 100%;
  position: relative;
  z-index: 100;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.swatch-picker {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  position: relative;
}
.swatch-picker__list {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.swatch-picker__item {
  background-repeat: no-repeat;
  border: none;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px;
  margin-right: 1px;
}
.swatch-picker__item:hover {
  cursor: pointer;
  box-shadow: inset 0 0 0 2px #666;
}
.swatch-picker__item:last-child {
  margin-right: 0;
}
.swatch-picker__item--active {
  box-shadow: inset 0 0 0 2px black;
}
.swatch-picker__item--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.swatch-picker__item--soft-disabled {
  opacity: 0.5;
  cursor: default;
}
.swatch-picker__item--square {
  border-radius: 0;
}
.swatch-picker__item--round {
  border-radius: 50%;
}
.swatch-picker__item__overlay {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: #666;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 10 10'> <path d='M10 0 L0 10' stroke='#ccc' stroke-width='0.2'/></svg>");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%, auto;
  font-size: 0.35rem;
}
@media (min-width: 0px) and (max-width: 599px) {
  .swatch-picker__item__overlay {
    font-size: 0.625rem;
  }
}
.swatch-picker__swatch-name {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
  margin-top: 5px;
}
.swatch-picker__swatch {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  margin: 2px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 599px) {
  .swatch-picker__swatch {
    width: 40px;
    height: 40px;
  }
}
.swatch-picker__swatch--square {
  border-radius: 0;
}
.swatch-picker__swatch--round {
  border-radius: 50%;
}

.swatch-picker__swatch.swatch-picker__swatch--image {
  width: auto;
  height: auto;
  border: 0;
  padding: 1px;
}
.swatch-picker__swatch.swatch-picker__swatch--image img {
  display: block;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.title-wrapper {
  padding-bottom: 1em;
}
.title-wrapper .title-wrapper__title, .title-wrapper .title-wrapper__sub-title {
  padding-right: 1rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.toggle-box-list {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 0px) and (max-width: 960px) {
  .toggle-box-list {
    font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.375;
    text-transform: none;
  }
}
.toggle-box-list__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  -ms-flex: 25%;
      flex: 25%;
  background-color: #fff;
  border: 2px solid #ccc;
  padding: 7px 5px 5px 5px;
  margin: 0 0 -2px;
}
@media (min-width: 0px) and (max-width: 960px) {
  .toggle-box-list__item {
    padding-bottom: 12px;
    padding-top: 13px;
  }
}
@media (min-width: 600px) and (max-width: 960px) {
  .toggle-box-list__item {
    padding: 7px 10px;
  }
}
.toggle-box-list__item:hover {
  z-index: 1;
  border-color: #666;
  color: #666;
  cursor: pointer;
}
.toggle-box-list__item:not(first-child) {
  margin-left: -2px;
}
.toggle-box-list__item--active {
  z-index: 1;
  font-weight: 700;
  border-color: #666;
  color: #666;
}
.toggle-box-list__item--disabled {
  opacity: 0.5;
  cursor: default;
  border-color: #666;
  color: #666;
  opacity: 0.25;
}
.toggle-box-list__item--hard-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.toggle-box-list--inline {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.toggle-box-list__item:nth-last-child(n+4):not(.toggle-box-list__item--inline), .toggle-box-list__item:nth-last-child(n+4):not(.toggle-box-list__item--inline) ~ .toggle-box-list__item:not(.toggle-box-list__item--inline) {
  -ms-flex: 44%;
      flex: 44%;
}
.toggle-box-list__item--inline {
  -ms-flex: none;
      flex: none;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

/* Base Typography */
/* Serif */
/* Sans Serif */
/* End Base Typography */
.text--jumbotron {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 4.5rem;
}

.text--primary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
  font-weight: 500;
}

.text--primary-light {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 2.25rem;
}

.text--secondary {
  font-family: "Mier-A", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
}

.text--tertiary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--tertiary-light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #999;
}

.text--quaternary {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
}

.text--quaternary-bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  font-weight: 700;
}

.text--detail-header {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.7rem;
  font-weight: 300;
}

.text--promo {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #86504c;
  font-weight: 700;
  text-align: center;
}

.text--callout {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75;
}

.text--regular {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.75;
}

.text--light {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
}

.text--light-italic {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  font-style: italic;
}

.text--bold {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.text--caption {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  color: #999;
}
.text--caption--error {
  color: #FF0000;
}

.text--label {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125;
}

.text--detail-content {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
}

.text--tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
}

.text--caption-tiny {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #999;
  font-size: 0.625rem;
  line-height: 1.5;
}

.text--action {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #8AAD3A;
  font-weight: 700;
}

.text--center {
  text-align: center;
}

.text--error {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.375;
  color: #af4150;
  font-size: 0.813rem;
}

.text--component-title {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1875rem;
  line-height: 1.875rem;
  margin: 0;
  padding-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-title {
    font-size: 1.375rem;
  }
}

.text--component-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin: auto;
  max-width: 53.75rem;
  padding-bottom: 0.625rem;
  padding-bottom: 1.375rem;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-description {
    max-width: 100%;
    margin: auto;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-description {
    font-size: 1.125rem;
  }
}

.text--component-sub-description {
  font-family: "Brandon-Grotesque", "Helvetica", "Arial", "sans-serif";
  font-style: normal;
  font-weight: 300;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.625rem;
  padding-bottom: 1.3875rem;
}
@media (min-width: 0px) and (max-width: 960px) {
  .text--component-sub-description {
    text-align: center;
  }
}
@media (min-width: 0px) and (max-width: 599px) {
  .text--component-sub-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

a.text--action {
  text-decoration: none;
}
a.text--action:hover {
  color: #6c872d;
  text-decoration: underline;
}
a.text--action:active {
  color: #5c7427;
}

.text--inline {
  display: inline;
}

.legacyGlobalStyles p:last-child {
  margin-bottom: 0;
}
.legacyGlobalStyles a {
  text-decoration: none;
  cursor: pointer;
}
.legacyGlobalStyles a:hover {
  text-decoration: underline;
}

ul.list--bullet {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.list--bullet li {
  margin-bottom: 0.25rem;
}

.tooltip {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Arial", "Helvetica", "sans-serif";
  font-style: normal;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  z-index: 1070;
}
.tooltip__body {
  max-width: 200px;
  background-color: #fff;
}
.tooltip__body--plum {
  background-color: #86504c;
  color: #fff;
}
.tooltip--closeable .tooltip__body {
  padding: 20px;
}
.tooltip__arrow {
  position: absolute;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: -1;
  background-color: white;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}
.tooltip__arrow--plum {
  background-color: #86504c;
}
.tooltip--top {
  margin-top: -5px;
}
.tooltip--top .tooltip__arrow {
  bottom: -5px;
  left: 50%;
  margin-left: -5px;
}
.tooltip--right {
  margin-left: 5px;
}
.tooltip--right .tooltip__arrow {
  top: 50%;
  left: -5px;
  margin-top: -5px;
}
.tooltip--bottom {
  margin-top: 5px;
}
.tooltip--bottom .tooltip__arrow {
  top: -5px;
  left: 50%;
  margin-left: -5px;
}
.tooltip--left {
  margin-left: -5px;
}
.tooltip--left .tooltip__arrow {
  top: 50%;
  right: -5px;
  margin-top: -5px;
}
.tooltip .tooltip__close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}

.tooltip-enter {
  opacity: 0.01;
}

.tooltip-enter.tooltip-enter-active {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

.tooltip-leave {
  opacity: 1;
}

.tooltip-leave.tooltip-leave-active {
  opacity: 0.01;
  transition: opacity 0.5s ease-in;
}

.trigger {
  display: inline-block;
  cursor: pointer;
}

.background--white {
  background-color: #fff;
}

.text--white {
  color: #fff;
}

.background--whiteTransparentFill {
  background-color: rgba(255, 255, 255, 0.97);
}

.text--whiteTransparentFill {
  color: rgba(255, 255, 255, 0.97);
}

.background--black {
  background-color: #333;
}

.text--black {
  color: #333;
}

.background--gray {
  background-color: #ccc;
}

.text--gray {
  color: #ccc;
}

.background--grayVeryLight {
  background-color: #f9f9f9;
}

.text--grayVeryLight {
  color: #f9f9f9;
}

.background--grayLight {
  background-color: #eee;
}

.text--grayLight {
  color: #eee;
}

.background--grayLighter {
  background-color: #f6f6f6;
}

.text--grayLighter {
  color: #f6f6f6;
}

.background--grayMedium {
  background-color: #999;
}

.text--grayMedium {
  color: #999;
}

.background--grayDark {
  background-color: #666;
}

.text--grayDark {
  color: #666;
}

.background--brownLight {
  background-color: #ccc9c4;
}

.text--brownLight {
  color: #ccc9c4;
}

.background--brownDark {
  background-color: #565547;
}

.text--brownDark {
  color: #565547;
}

.background--tan {
  background-color: #948e80;
}

.text--tan {
  color: #948e80;
}

.background--tanLight {
  background-color: #8E8765;
}

.text--tanLight {
  color: #8E8765;
}

.background--plum {
  background-color: #86504c;
}

.text--plum {
  color: #86504c;
}

.background--plumLight {
  background-color: #d9b6b3;
}

.text--plumLight {
  color: #d9b6b3;
}

.background--red {
  background-color: #af4150;
}

.text--red {
  color: #af4150;
}

.background--green {
  background-color: #8AAD3A;
}

.text--green {
  color: #8AAD3A;
}

.background--greenHover {
  background-color: #6c872d;
}

.text--greenHover {
  color: #6c872d;
}

.background--greenActive {
  background-color: #5c7427;
}

.text--greenActive {
  color: #5c7427;
}

.background--alertWarning {
  background-color: #fcf8e3;
}

.text--alertWarning {
  color: #fcf8e3;
}

.truncated-text__text {
  display: block;
  overflow: hidden;
  position: relative;
  transition: height 0.5s ease-out;
  height: auto;
  width: 100%;
}
.truncated-text__text-enter {
  transition: opacity 0.5s ease-out;
  opacity: 0;
}
.truncated-text__text-enter-active {
  opacity: 1;
}
.truncated-text__text-leave {
  transition: opacity 0.5s ease-out;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.truncated-text__text-leave-active {
  opacity: 0;
}
.truncated-text__text--title {
  font-weight: bold;
}
.truncated-text__more-link {
  color: #8AAD3A;
  text-decoration: none;
}
.truncated-text__more-link:hover {
  color: #6c872d;
  text-decoration: underline;
  cursor: pointer;
}
.truncated-text__more-link:active {
  color: #5c7427;
}

.trigger {
  cursor: pointer;
}