/* tower.mason.less
 * Modified by Marc Lisevich Dec 2017
 *
 * The main LESS file for Tower Mason.
 * Note that all component stylesheets are imported with (inline). This is because
 * we do not want LESS.js to process any less, simply generate a single LESS
 * file that we can provide to the client for processing in the browser.
 */
/**
 * Document Style Variables (provided by InstanceStyleMixin)
 * @color[1..5]
 * @font[1..2]
 * @fontSize[1..7]
 *
 * These global variables can be utilized anywhere in the below less files to bind a style rule to the document's
 * currently selected style, e.g.
 *   .paragraph-pip {
 *			    color: @color1;
 *   }
 */
/* https://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

*,
*:before,
*:after {
  box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}
/*!
 * Cropper v2.2.4
 * https://github.com/fengyuanchen/cropper
 *
 * Copyright (c) 2014-2016 Fengyuan Chen and contributors
 * Released under the MIT license
 *
 * Date: 2016-01-01T08:20:03.583Z
 */
.cropper-container {
  font-size: 0;
  line-height: 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  direction: ltr !important;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.cropper-container img {
  display: block;
  width: 100%;
  min-width: 0 !important;
  max-width: none !important;
  height: 100%;
  min-height: 0 !important;
  max-height: none !important;
  image-orientation: 0deg !important;
}
.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cropper-wrap-box {
  overflow: hidden;
}
.cropper-drag-box {
  opacity: 0;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.cropper-modal {
  opacity: .5;
  background-color: #000;
  filter: alpha(opacity=50);
}
.cropper-view-box {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
}
.cropper-dashed {
  position: absolute;
  display: block;
  opacity: .5;
  border: 0 dashed #eee;
  filter: alpha(opacity=50);
}
.cropper-dashed.dashed-h {
  top: 33.33333%;
  left: 0;
  width: 100%;
  height: 33.33333%;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.cropper-dashed.dashed-v {
  top: 0;
  left: 33.33333%;
  width: 33.33333%;
  height: 100%;
  border-right-width: 1px;
  border-left-width: 1px;
}
.cropper-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  opacity: .75;
  filter: alpha(opacity=75);
}
.cropper-center:before,
.cropper-center:after {
  position: absolute;
  display: block;
  content: ' ';
  background-color: #eee;
}
.cropper-center:before {
  top: 0;
  left: -3px;
  width: 7px;
  height: 1px;
}
.cropper-center:after {
  top: -3px;
  left: 0;
  width: 1px;
  height: 7px;
}
.cropper-face,
.cropper-line,
.cropper-point {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .1;
  filter: alpha(opacity=10);
}
.cropper-face {
  top: 0;
  left: 0;
  background-color: #fff;
}
.cropper-line {
  background-color: #39f;
}
.cropper-line.line-e {
  top: 0;
  right: -3px;
  width: 5px;
  cursor: e-resize;
}
.cropper-line.line-n {
  top: -3px;
  left: 0;
  height: 5px;
  cursor: n-resize;
}
.cropper-line.line-w {
  top: 0;
  left: -3px;
  width: 5px;
  cursor: w-resize;
}
.cropper-line.line-s {
  bottom: -3px;
  left: 0;
  height: 5px;
  cursor: s-resize;
}
.cropper-point {
  width: 5px;
  height: 5px;
  opacity: .75;
  background-color: #39f;
  filter: alpha(opacity=75);
}
.cropper-point.point-e {
  top: 50%;
  right: -3px;
  margin-top: -3px;
  cursor: e-resize;
}
.cropper-point.point-n {
  top: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: n-resize;
}
.cropper-point.point-w {
  top: 50%;
  left: -3px;
  margin-top: -3px;
  cursor: w-resize;
}
.cropper-point.point-s {
  bottom: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: s-resize;
}
.cropper-point.point-ne {
  top: -3px;
  right: -3px;
  cursor: ne-resize;
}
.cropper-point.point-nw {
  top: -3px;
  left: -3px;
  cursor: nw-resize;
}
.cropper-point.point-sw {
  bottom: -3px;
  left: -3px;
  cursor: sw-resize;
}
.cropper-point.point-se {
  right: -3px;
  bottom: -3px;
  width: 20px;
  height: 20px;
  cursor: se-resize;
  opacity: 1;
  filter: alpha(opacity=100);
}
.cropper-point.point-se:before {
  position: absolute;
  right: -50%;
  bottom: -50%;
  display: block;
  width: 200%;
  height: 200%;
  content: ' ';
  opacity: 0;
  background-color: #39f;
  filter: alpha(opacity=0);
}
@media (min-width: 768px) {
  .cropper-point.point-se {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    width: 10px;
    height: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    width: 5px;
    height: 5px;
    opacity: .75;
    filter: alpha(opacity=75);
  }
}
.cropper-invisible {
  opacity: 0;
  filter: alpha(opacity=0);
}
.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}
.cropper-hide {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}
.cropper-hidden {
  display: none !important;
}
.cropper-move {
  cursor: move;
}
.cropper-crop {
  cursor: crosshair;
}
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}
.font-arial {
  font-family: "Arial";
}
.font-courier_new {
  font-family: "Courier New";
}
.font-georgia {
  font-family: "Georgia";
}
.font-helvetica_neue {
  font-family: "Helvetica Neue";
}
.font-lucida_console {
  font-family: "Lucida Console";
}
.font-lucida_sans_unicode {
  font-family: "Lucida Sans Unicode";
}
.font-palatino_linotype {
  font-family: "Palatino Linotype";
}
.font-tahoma {
  font-family: "Tahoma";
}
.font-time_new_roman {
  font-family: "Times New Roman";
}
.font-trebuchet_ms {
  font-family: "Trebuchet MS";
}
svg {
  overflow: hidden;
}
html {
  font-size: 12px;
}
@media (min-width: 481px) {
  html {
    font-size: 16px;
  }
}
.document {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}
.document img {
  max-width: none;
}
.document:empty {
  height: 200px;
}
body.preview .document {
  position: absolute;
}
body.is-dragging-block .emptyDocumentNotification {
  display: none;
}
body.is-dragging-block .emptyDocumentNotification-nonHomePage {
  display: none;
}
.document-wrapper-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #6b6d7a;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  transition: opacity .5s;
}
.document-wrapper-overlay--visible {
  opacity: .7;
  pointer-events: all;
}
.lessDrawerWidth {
  margin-left: 430px;
}
.emptyDocumentWrapper {
  background-color: #53545b;
}
.emptyDocumentWrapper.fixed-width {
  max-width: 1100px;
  margin: auto;
}
.emptyDocumentNotification-nonHomePage,
.emptyDocumentNotification {
  background-color: white;
  border: 3px dashed #65c3de;
  color: #6b6d7a;
  padding: 20px;
}
.emptyDocumentNotification {
  line-height: 2;
}
.emptyDocumentNotification-messageContent {
  font-family: 'Lato', 'sans-serif';
  text-align: center;
  font-size: 1.5em;
}
.emptyDocumentNotification-messageContent-link {
  cursor: pointer;
  color: #61c3e0;
  text-decoration: underline;
  font-size: 0.6em;
}
.emptyDocumentNotification-messageContent-image {
  display: inline-block;
  fill: #65c3de;
  width: 64px;
  height: 64px;
}
.emptyDocumentNotification-messageContent-importance {
  font-weight: bold;
}
.document-article-inner {
  position: relative;
  z-index: 3;
}
.document-background-image-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  background-position: 100% top;
}
.document-background-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.emptyDocumentNotification-drawerLink {
  cursor: pointer;
  color: #65c3de;
  padding-top: 10px;
  font-size: 0.7em;
  text-decoration: underline;
}
.emptyDocumentNotification-drawerLink:hover {
  color: #8fd3e7;
}
.svg-def-container {
  display: none;
}
.font-color1 {
  color: #821234;
  text-decoration: inherit;
}
.font-color2 {
  color: #5f001d;
  text-decoration: inherit;
}
.font-color3 {
  color: #bf4f71;
  text-decoration: inherit;
}
.font-color4 {
  color: #fdfafb;
  text-decoration: inherit;
}
.font-color5 {
  color: #1b050c;
  text-decoration: inherit;
}
[class^="font-custom-color-"] {
  text-decoration: inherit;
}
.font-fontSize1 {
  font-size: 60%;
}
.font-fontSize2 {
  font-size: 80%;
}
.font-fontSize3 {
  font-size: 100%;
}
.font-fontSize4 {
  font-size: 120%;
}
.font-fontSize5 {
  font-size: 140%;
}
.font-size1 {
  font-size: 0.75rem;
}
.font-size2 {
  font-size: 0.875rem;
}
.font-size3 {
  font-size: 1rem;
}
.font-size4 {
  font-size: 1.125rem;
}
.font-size5 {
  font-size: 1.25rem;
}
.font-size6 {
  font-size: 1.5rem;
}
.font-size7 {
  font-size: 1.75rem;
}
.font-size8 {
  font-size: 2.25rem;
}
.font-size9 {
  font-size: 3rem;
}
.font-size10 {
  font-size: 4.5rem;
}
.font-font1 {
  font-family: "Oxygen", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.font-font2 {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.font-font3 {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.block {
  position: relative;
}
.is-dragging .block.sidebar {
  pointer-events: none;
}
.block .block-anchor {
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}
.block.fixed-width {
  max-width: 1100px;
  margin: auto;
}
.block.sidebar {
  max-width: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.block.is-highlighted {
  z-index: 10;
}
.block.inline-cropping {
  background-color: #ffffff;
}
.carousel-wrapper {
  margin: 0 30px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.carousel-faces.transitioning {
  transition: min-height 500ms;
  -webkit-transition: min-height 500ms;
}
.carousel-faces .carousel-face {
  position: absolute;
  left: 0;
  right: 0;
  visibility: hidden;
  top: 0;
}
.carousel-faces .carousel-face.current,
.carousel-faces .carousel-face.previous {
  transition: transform 500ms ease;
  -webkit-transition: -webkit-transform 500ms ease;
  visibility: visible;
}
.carousel-faces .carousel-face.current {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  position: relative;
  top: -20px;
}
.carousel-faces .carousel-face.left {
  transform: translateX(-1200px);
  -webkit-transform: translateX(-1200px);
}
.carousel-faces .carousel-face.right {
  transform: translateX(1200px);
  -webkit-transform: translateX(1200px);
}
.carousel-control-wrapper {
  text-align: center;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}
.face-control {
  border-radius: 50%;
  margin-right: 10px;
  width: 12px;
  height: 12px;
  display: inline-block;
  pointer-events: all;
  cursor: pointer;
}
.face-control-side {
  display: block;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: all;
  cursor: pointer;
}
.face-control-side svg {
  width: 15px;
  height: 40px;
}
.face-control-side.left {
  left: 20px;
}
.face-control-side.right {
  right: 20px;
  transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
}
.block-background,
.block-background-color {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  margin: auto;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  border-radius: inherit;
  transition: opacity 200ms;
}
.block-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  pointer-events: none;
  padding: 80px 20px;
  margin-right: auto;
  margin-left: auto;
}
.block-content.carousel {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}
.is-dragging .block-content {
  pointer-events: auto;
}
.block-content .pip:not(.group-pip) {
  pointer-events: auto;
}
.is-dragging .block-content .pip:not(.group-pip) {
  pointer-events: none;
}
.edit-mode .block-content.carousel {
  padding-top: 70px;
  padding-bottom: 70px;
}
.hide-ui .edit-ui,
.hide-ui .pip-hideButton {
  display: none !important;
}
.pip {
  position: relative;
  min-width: 50px;
}
.pip--displayHidden {
  display: none !important;
}
.pip:hover > .pip-hideButton {
  display: block;
}
.pip-hideButton {
  display: none;
  position: absolute;
  border-radius: 50%;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #e7aa5e;
  cursor: pointer;
}
.pip-hideButton-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.pip-hideButton svg {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  fill: #ffffff;
}
.button-pip {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .button-pip {
    width: auto;
  }
}
.button-pip.more-style-bar-button-preview {
  background-color: #1b050c;
}
.button-pip.more-style-bar-button-preview a:hover {
  cursor: default;
}
.rte-dropdown-wrapper [data-option-value="font1"] {
  font-family: "Oxygen", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.rte-dropdown-wrapper [data-option-value="font2"] {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.rte-dropdown-wrapper li[data-option-value="fontSize1"] {
  font-size: 60%;
}
.rte-dropdown-wrapper li[data-option-value="fontSize2"] {
  font-size: 80%;
}
.rte-dropdown-wrapper li[data-option-value="fontSize3"] {
  font-size: 100%;
}
.rte-dropdown-wrapper li[data-option-value="fontSize4"] {
  font-size: 120%;
}
.rte-dropdown-wrapper li[data-option-value="fontSize5"] {
  font-size: 140%;
}
.rte-dropdown-wrapper [data-option-value="color1"],
.rte-dropdown-wrapper [data-option-value="color1"]:before {
  background-color: #821234;
}
.rte-dropdown-wrapper [data-option-value="color2"],
.rte-dropdown-wrapper [data-option-value="color2"]:before {
  background-color: #5f001d;
}
.rte-dropdown-wrapper [data-option-value="color3"],
.rte-dropdown-wrapper [data-option-value="color3"]:before {
  background-color: #bf4f71;
}
.rte-dropdown-wrapper [data-option-value="color4"],
.rte-dropdown-wrapper [data-option-value="color4"]:before {
  background-color: #fdfafb;
}
.rte-dropdown-wrapper [data-option-value="color5"],
.rte-dropdown-wrapper [data-option-value="color5"]:before {
  background-color: #1b050c;
}
.block.text-button .block-content > .row-pip > .col-pip > .button-pip {
  margin: auto;
  width: 80%;
}
.pip.html-pip {
  display: block !important;
  margin: 0 auto;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.pip.html-pip div {
  margin: 0 auto;
}
.pip.html-pip div iframe.tower-unpublished-iframe {
  width: 75%;
  height: 200px;
  margin: 0 auto;
  overflow: hidden;
}
.paragraph-pip,
.logo-text-pip {
  margin: 0 auto;
  width: 100%;
  line-height: 1.85;
  text-align: center;
}
.paragraph-pip:last-of-type,
.logo-text-pip:last-of-type {
  margin-bottom: 0;
}
.paragraph-pip b,
.logo-text-pip b,
.paragraph-pip strong,
.logo-text-pip strong {
  font-weight: bold;
}
.paragraph-pip u,
.logo-text-pip u {
  text-decoration: underline;
}
.paragraph-pip i,
.logo-text-pip i,
.paragraph-pip em,
.logo-text-pip em {
  font-style: italic;
}
.paragraph-pip ol,
.logo-text-pip ol {
  display: block;
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.paragraph-pip ol li,
.logo-text-pip ol li {
  display: list-item;
  text-align: -webkit-match-parent;
}
.paragraph-pip ul,
.logo-text-pip ul {
  display: block;
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}
.paragraph-pip {
  max-width: 780px;
  margin: -6.8px auto;
}
.block-content > .pip.paragraph-pip,
.block-content > .pip.logo-text-pip,
.col-pip > .pip.paragraph-pip,
.col-pip > .pip.logo-text-pip {
  margin-bottom: 20px;
}
.block.text-button .block-content > .row-pip > .col-pip > .paragraph-pip {
  margin: 0 20px 0;
}
.col-pip .pip.paragraph-pip {
  max-width: 100%;
}
.navigation-pip {
  list-style: none;
}
@media screen and (max-width: 480px) {
  .navigation-pip.mobile {
    position: absolute;
  }
}
.navigation-pip .link {
  display: inline-block;
  margin: 0 15px;
}
.navigation-pip .link a {
  text-decoration: none;
}
.navigation-pip .link a:hover,
.navigation-pip .link a.navigation-link-active-page {
  text-decoration: underline;
}
.navigation-pip .link.is-hidden {
  display: none;
}
.navigation-pip .link-placeholder {
  position: relative;
  min-width: 100px;
  cursor: default;
  color: transparent;
}
.navigation-pip .link-placeholder a {
  display: inline-block;
}
.navigation-pip .mobile-content {
  display: none;
  position: absolute;
  z-index: 101;
  text-align: center;
}
.navigation-pip .mobile-content.mobile {
  display: block;
}
@media (min-width: 481px) {
  .navigation-pip .mobile-content.mobile {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .navigation-pip .mobile-content.mobile + .link-wrapper {
    display: none;
  }
}
.navigation-pip .mobile-content.tablet {
  display: block;
}
@media screen and (max-width: 1024px) {
  .navigation-pip .mobile-content.tablet + .link-wrapper {
    display: none;
  }
}
@media (min-width: 769px) {
  .navigation-pip .mobile-content.tablet {
    display: none;
  }
  .navigation-pip .mobile-content.tablet + .link-wrapper {
    display: block;
  }
}
.navigation-pip .mobile-content.desktop {
  display: block;
}
.navigation-pip .mobile-content.desktop + .link-wrapper {
  display: none;
}
.navigation-pip .mobile-content.active .mobile-wrapper {
  pointer-events: auto;
  overflow-y: scroll;
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.navigation-pip .mobile-content.active .link-wrapper-mobile {
  top: 80px;
  height: auto;
  opacity: 1;
}
.navigation-pip .mobile-content.active .mobile-menu-trigger {
  background-color: transparent !important;
}
.navigation-pip .mobile-content.active .mobile-menu-trigger:before {
  top: 0 !important;
  transform: rotate(45deg);
}
.navigation-pip .mobile-content.active .mobile-menu-trigger:after {
  top: 0 !important;
  transform: rotate(-45deg);
}
.navigation-pip .mobile-content.active .mobile-menu-button {
  background-color: transparent;
}
.navigation-pip .mobile-content.active li:hover,
.navigation-pip .mobile-content.active li:active {
  background-color: rgba(255, 255, 255, 0.1);
}
.navigation-pip .mobile-content.active li a {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.navigation-pip .mobile-content .mobile-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  height: 100vh;
  background-color: transparent;
  overflow: hidden;
  transition: background-color 500ms ease;
}
.navigation-pip .mobile-menu-button {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  opacity: 0.8;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity 200ms ease;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.navigation-pip .mobile-menu-button:hover {
  opacity: 1;
}
.navigation-pip .mobile-menu-trigger {
  position: absolute;
  right: 20%;
  top: 0;
  bottom: 0;
  width: 60%;
  height: 5%;
  margin: auto;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: top 200ms, background-color 200ms, transform 200ms;
}
.navigation-pip .mobile-menu-trigger:before,
.navigation-pip .mobile-menu-trigger:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: inherit;
  transition: top 200ms, background-color 200ms, transform 200ms;
}
.navigation-pip .mobile-menu-trigger:before {
  top: -400%;
}
.navigation-pip .mobile-menu-trigger:after {
  top: 400%;
}
.navigation-pip .link-wrapper-mobile {
  position: absolute;
  width: 100%;
  top: 60px;
  left: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 500ms ease, top 500ms ease;
}
.navigation-pip .link-wrapper-mobile a {
  font-size: 1.5em;
}
.navigation-pip .link-wrapper-mobile a:hover {
  text-decoration: none;
}
.navigation-pip .link-wrapper-mobile ul {
  padding: 0;
  top: 80px;
}
.navigation-pip .link-wrapper-mobile .link {
  display: block;
  width: 100%;
  margin: 0;
  padding-top: 80px;
  text-align: center;
  padding: 10px 0;
  transition: background-color 200ms ease;
}
.navigation-pip .link--spillover {
  position: relative;
}
.navigation-pip .link--spillover-navigation {
  position: absolute;
  top: 100%;
  left: 0;
}
.edit-mode .mobile-content .mobile-menu-button {
  top: 90px;
  right: 65px;
}
.drawers-container .mobile-content {
  display: none !important;
}
.no-scroll {
  overflow: hidden;
}
@media (min-width: 769px) {
  .no-scroll {
    overflow: auto;
  }
}
.title-pip {
  width: 100%;
  text-align: center;
}
.title-pip .title {
  display: block;
  padding: 0;
  width: 100%;
  vertical-align: baseline;
  text-decoration: none;
}
.title-pip b,
.title-pip strong {
  font-weight: bold;
}
.title-pip u {
  text-decoration: underline;
}
.title-pip i,
.title-pip em {
  font-style: italic;
}
.title-pip-1 {
  line-height: 1.4;
  font-size: 2.125em;
  opacity: 1;
  margin: -0.425em auto;
}
.title-pip-2 {
  line-height: 1.5;
  font-size: 1.75em;
  opacity: 1;
  margin: -0.4375em auto;
}
.title-pip-3 {
  line-height: 1.6;
  font-size: 1.25em;
  opacity: 1;
  margin: -0.375em auto;
}
.title-pip-4 {
  line-height: 1.55;
  font-size: 1.125em;
  opacity: 1;
  margin: -0.3375em auto;
}
.title-pip-5 {
  line-height: 1.5;
  font-size: 1em;
  opacity: 1;
  margin: -0.25em auto;
}
.title-pip-6 {
  line-height: 1.66;
  font-size: 0.75em;
  opacity: 1;
  margin: -0.2475em auto;
}
.block-content > .pip.title-pip,
.group-pip > .pip.title-pip,
.col-pip > .pip.title-pip {
  margin-bottom: 20px;
}
.header-centered-fixed .brandbar .title-pip {
  width: auto;
}
.image-pip {
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-width: 5px;
  min-height: 1px;
}
.image-pip .image-wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.image-pip .image-wrap img {
  display: block;
  width: 100%;
}
.image-pip.is-tall {
  height: 100%;
}
@media (min-width: 769px) {
  .image-pip.is-tall {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    min-height: 250px;
  }
  .image-pip.is-tall .image-wrap img {
    margin: auto;
    width: auto;
    height: 100%;
  }
}
@media (max-width: 480px) {
  .pip.image-pip {
    width: 100% !important;
  }
}
.image-pip.is-resizable {
  margin: auto !important;
  -ms-flex-positive: 0 !important;
  -webkit-flex-grow: 0 !important;
  -moz-flex-grow: 0 !important;
  -ms-flex-grow: 0 !important;
  flex-grow: 0 !important;
  height: auto;
}
@media (min-width: 769px) {
  .image-pip.is-resizable.is-tall {
    -webkit-flex: none;
    -moz-flex: none;
    -ms-flex: none;
    flex: none;
    min-height: 0;
  }
}
.image-pip.is-resizable.is-tall .image-wrap {
  position: relative;
  height: auto;
}
.image-pip.is-resizable.is-tall .image-wrap img {
  margin: 0;
  width: 100%;
  height: auto;
}
.block-content > .pip.image-pip,
.block-content > .title-pip ~ .pip.image-pip {
  margin-bottom: 20px !important;
}
@media (min-width: 480px) {
  .image-grid .block-content .title-pip + .pip.row-pip.wrappable.image-grid {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
.image-title-text-button .block-content .pip.image-pip {
  height: auto;
}
@media screen and (max-width: 480px) {
  .buckets-image .block-content .pip.image-pip .image-wrap {
    border-radius: 0 !important;
  }
  .buckets-image .block-content .pip.image-pip .image-wrap img {
    border-radius: 50%;
  }
}
.block.image-quote-right .graphic-pip-container,
.block.image-quote-left .graphic-pip-container,
.block.image-bucket-carousel .image-pip.is-tall .graphic-pip-container {
  position: absolute;
  height: 100%;
  width: 100%;
}
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox):after,
.view-mode .force-lightbox:after,
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox) .image-wrap:before,
.view-mode .force-lightbox .image-wrap:before,
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox) .image-wrap:after,
.view-mode .force-lightbox .image-wrap:after {
  opacity: 0;
  transition: opacity .15s;
  content: '';
  pointer-events: none;
}
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox):hover:after,
.view-mode .force-lightbox:hover:after,
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox):hover .image-wrap:before,
.view-mode .force-lightbox:hover .image-wrap:before,
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox):hover .image-wrap:after,
.view-mode .force-lightbox:hover .image-wrap:after {
  opacity: 1;
}
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox):after,
.view-mode .force-lightbox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox) .image-wrap:before,
.view-mode .force-lightbox .image-wrap:before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background-color: transparent;
  position: absolute;
  top: -5px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox) .image-wrap:after,
.view-mode .force-lightbox .image-wrap:after {
  width: 2px;
  height: 11px;
  background-color: #FFFFFF;
  position: absolute;
  top: 16px;
  left: 20px;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  z-index: 1;
}
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox) .no-lightbox:before,
.view-mode .force-lightbox .no-lightbox:before,
.view-mode.lightbox-mode .image-pip .graphic-pip-container:not(.force-disable-lightbox) .no-lightbox:after,
.view-mode .force-lightbox .no-lightbox:after {
  display: none;
}
.graphic-pip-container {
  position: relative;
}
.graphic-pip-container.is-resizable {
  width: 100%;
}
.icon-pip-container {
  display: inline-block;
  position: relative;
  margin: 0 auto;
}
.icon-pip-container.is-resizable {
  width: 100%;
}
.pip.image-pip.editable,
.pip.icon-pip.editable {
  cursor: pointer;
}
.icon-linkTag {
  margin: 0 auto;
}
.pip.icon-pip {
  padding: 0;
}
.pip.icon-pip .icon-container svg {
  min-width: 5px;
  min-height: 5px;
  height: 100%;
}
.icon-pip.is-resizable:hover {
  z-index: 11;
}
.row-pip .icon-pip {
  width: 100%;
}
.icon-pip .icon-container {
  text-align: center;
}
.logo-pip .centerStack {
  margin: 0 auto;
  text-align: center;
}
.logo-pip .centerStack .icon-pip,
.logo-pip .centerStack .image-pip,
.logo-pip .centerStack .logo-text-container {
  margin: 0 auto 5px;
}
.logo-pip .centerStack .icon-container,
.logo-pip .centerStack img {
  margin: 0 auto;
}
.logo-pip .centerStack .logo-text-container {
  text-align: center;
  display: block;
}
.logo-pip .homeLink {
  display: inline-block;
}
.logo-pip .image-pip,
.logo-pip .icon-pip,
.logo-pip .logo-text-pip,
.logo-pip .logo-text-container {
  vertical-align: middle;
  display: inline-block;
}
.logo-pip .icon-pip,
.logo-pip .image-pip.pip {
  position: relative;
  width: auto;
}
.logo-pip .logo-text-container {
  position: relative;
}
.logo-pip .image-pip.is-tall {
  min-height: 0px;
}
.logo-pip .image-pip.is-tall .image-wrap {
  position: relative;
}
.logo-pip.text-mode {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.logo-pip.text-mode .logo-text-container {
  margin-left: 0;
}
.logo-pip.text-mode .icon-pip-container,
.logo-pip.text-mode .image-pip {
  display: none;
}
.logo-pip.graphic-mode .logo-text-container {
  display: none !important;
}
.logo-pip.is-centerStacked {
  margin: 0 auto;
  text-align: center;
}
.logo-pip.is-centerStacked .icon-pip,
.logo-pip.is-centerStacked .image-pip,
.logo-pip.is-centerStacked .logo-text-container {
  margin: 0 auto 5px;
}
.logo-pip.is-centerStacked .icon-container,
.logo-pip.is-centerStacked img {
  margin: 0 auto;
}
.logo-pip.is-centerStacked .logo-text-container {
  text-align: center;
  display: block;
}
@media screen and (max-width: 480px) {
  .logo-pip:not(.is-centerStacked) {
    margin: 0 auto;
    text-align: center;
  }
  .logo-pip:not(.is-centerStacked) .icon-pip,
  .logo-pip:not(.is-centerStacked) .image-pip,
  .logo-pip:not(.is-centerStacked) .logo-text-container {
    margin: 0 auto 5px;
  }
  .logo-pip:not(.is-centerStacked) .icon-container,
  .logo-pip:not(.is-centerStacked) img {
    margin: 0 auto;
  }
  .logo-pip:not(.is-centerStacked) .logo-text-container {
    text-align: center;
    display: block;
  }
}
@media (min-width: 481px) {
  .logo-pip:not(.is-centerStacked),
  .logo-pip:not(.is-centerStacked) .homeLink {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
  .logo-pip:not(.is-centerStacked) .logo-text-container .rich-text-content,
  .logo-pip:not(.is-centerStacked) .homeLink .logo-text-container .rich-text-content,
  .logo-pip:not(.is-centerStacked) .logo-text-container .rich-text-editable-container,
  .logo-pip:not(.is-centerStacked) .homeLink .logo-text-container .rich-text-editable-container {
    text-align: left;
  }
}
.social-pip {
  text-align: center;
}
.social-pip span {
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-height: 20px;
  min-width: 50%;
}
.social-pip span a {
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
  position: relative;
}
.social-pip span a svg {
  pointer-events: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  margin: auto;
}
.social-pip .social-icon:hover {
  opacity: .94;
}
.social-pip .social-icon-with-background svg {
  margin: auto;
  vertical-align: top;
}
.social-icon-type-circle {
  border-radius: 50%;
}
.social-icon-type-square {
  border-radius: 2px;
}
.pip.contact-pip {
  display: block !important;
}
.pip.contact-pip div {
  margin: 0 0 15px;
}
.pip.contact-pip form .form-fields-and-btn label {
  margin: 0 0 15px;
  display: block;
}
.pip.contact-pip form .form-fields-and-btn label.error {
  color: #ef6262;
}
.pip.contact-pip form .form-fields-and-btn .button-quark {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.pip.contact-pip form .form-fields-and-btn input:not([type='checkbox']):not([type='radio']) {
  height: 60px;
  /* Is this specified by the design team? it results in no focus indicator
     	        for KB navigation... see https://outlinenone.com/ for some issues with this.
		           	     	         review with Nick, Dylan, or Justin. This is a product conversation. */
  outline: none;
}
.pip.contact-pip form .form-fields-and-btn .input-container {
  position: relative;
}
.pip.contact-pip form .form-fields-and-btn .input-container.show-error-msg:after {
  background: #ef6262;
  border-radius: 3px;
  color: #fff;
  content: attr(title);
  padding: 10px 20px;
  position: absolute;
  z-index: 98;
  top: -38px;
  left: 15vw;
}
.pip.contact-pip form .form-fields-and-btn .input-container.show-error-msg:before {
  border: solid;
  border-color: #ef6262 transparent;
  border-width: 6px 6px 0 6px;
  content: "";
  position: absolute;
  z-index: 99;
  left: 23vw;
  top: -2px;
}
.pip.contact-pip form .form-fields-and-btn .input-container.show-error-msg {
  color: #ef6262;
}
.pip.contact-pip form .form-fields-and-btn .input-container.show-error-msg input,
.pip.contact-pip form .form-fields-and-btn .input-container.show-error-msg textarea {
  border: 2px solid #ef6262;
}
.pip.contact-pip form .form-fields-and-btn input,
.pip.contact-pip form .form-fields-and-btn textarea {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
  margin: 5px 0;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 15px;
  border-radius: 3px;
}
.pip.contact-pip form .form-fields-and-btn input.square,
.pip.contact-pip form .form-fields-and-btn textarea.square {
  border-radius: 0;
}
.pip.contact-pip form .form-fields-and-btn input.soft,
.pip.contact-pip form .form-fields-and-btn textarea.soft {
  border-radius: 3px;
}
.pip.contact-pip form .form-fields-and-btn input.rounded,
.pip.contact-pip form .form-fields-and-btn textarea.rounded {
  border-radius: 6px;
}
.pip.contact-pip form .form-fields-and-btn textarea {
  height: 135px;
  resize: none;
  display: block;
}
.pip.contact-pip form .form-fields-and-btn input.text,
.pip.contact-pip form .form-fields-and-btn textarea {
  width: 100%;
}
.pip.contact-pip form .form-fields-and-btn input[type='checkbox'],
.pip.contact-pip form .form-fields-and-btn input[type='radio'] {
  margin: 0 10px 0;
  vertical-align: middle;
}
.pip.contact-pip form .form-fields-and-btn fieldset label {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
}
.pip.contact-pip form .form-fields-and-btn fieldset label span {
  font: inherit;
}
.pip.contact-pip form .error-message,
.pip.contact-pip form .success-message {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  visibility: hidden;
  margin: auto 0;
  height: 150px;
}
.pip.contact-pip form .error-message > div,
.pip.contact-pip form .success-message > div {
  margin-top: 0;
}
.pip.contact-pip form .error-message svg,
.pip.contact-pip form .success-message svg {
  width: 44px;
  height: 44px;
  margin: auto;
  margin-bottom: 10px;
}
.pip.contact-pip form .success-message svg {
  fill: #7cbb52;
}
.pip.contact-pip form .error-message svg {
  fill: #ef6262;
}
.pip.contact-pip.success form .form-fields-and-btn {
  visibility: hidden;
}
.pip.contact-pip.success .success-message {
  visibility: visible;
}
.pip.contact-pip.failure form .form-fields-and-btn {
  visibility: hidden;
}
.pip.contact-pip.failure .error-message {
  visibility: visible;
}
.pip.contact-pip .description {
  opacity: .8;
}
.factory-pip {
  margin-bottom: 60px;
}
.factory-pip > .edit-ui {
  position: absolute;
  z-index: 1;
  display: none;
}
.factory-pip > .edit-ui.add {
  opacity: 0;
}
.factory-pip > .edit-ui.add .factory-button {
  width: 40px;
  height: 40px;
}
.factory-pip > .edit-ui.add .factory-button:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  height: 2px;
  background-color: #ffffff;
  content: ' ';
}
.factory-pip > .edit-ui.add .factory-button:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 50%;
  background-color: #ffffff;
  content: ' ';
}
.factory-pip > .edit-ui.handle .factory-button {
  cursor: move;
}
.factory-pip > .edit-ui.handle .icon-move {
  position: absolute;
  display: block;
  top: 9px;
  left: 9px;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #ffffff;
  stroke-width: .1px;
}
.factory-pip:hover {
  z-index: 1;
}
.factory-pip:hover > .edit-ui.remove,
.factory-pip:hover > .edit-ui.handle {
  display: block;
}
.factory-pip:last-of-type > .edit-ui.add {
  display: block;
}
.factory-pip:only-of-type > .edit-ui.remove,
.factory-pip:only-of-type > .edit-ui.handle {
  display: none;
}
.edit-ui-add {
  right: -20px;
}
.edit-ui-remove {
  top: 0;
  right: 20px;
}
.edit-ui-handle {
  top: 0;
  left: 20px;
}
.factory-button {
  width: 32px;
  height: 32px;
  padding: 11px 10.5px;
  line-height: 7px;
  font-size: 19px;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
}
.row-pip.wrappable {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}
.row-pip.wrappable .factory-pip {
  -ms-flex-positive: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
}
.block:hover .pip.factory-pip .edit-ui.add {
  opacity: 1;
}
.factory-pip:last-of-type > .col-pip:last-of-type {
  margin-bottom: 0;
}
.factory-pip:last-of-type .col-pip:last-of-type {
  margin-bottom: 0;
}
.alternating-timeline .title-pip ~ .factory-pip {
  margin-bottom: 0;
}
.alternating-timeline .title-pip ~ .factory-pip:before,
.alternating-timeline .title-pip ~ .factory-pip:after {
  display: none;
}
@media (min-width: 768px) {
  .alternating-timeline .title-pip ~ .factory-pip:before,
  .alternating-timeline .title-pip ~ .factory-pip:after {
    display: block;
  }
}
.block.inline-cropping .factory-pip .edit-ui.add,
.block.inline-cropping .factory-pip .edit-ui.remove,
.block.inline-cropping .factory-pip .edit-ui.handle {
  display: none;
}
@media (max-width: 768px) {
  .block.features .col-pip.feature:not(.feature--v2) .row-pip > .col-icon {
    margin-right: 20px;
    -ms-flex-preferred-size: 0 !important;
    -webkit-flex-basis: 0 !important;
    -moz-flex-basis: 0 !important;
    -ms-flex-basis: 0 !important;
    flex-basis: 0 !important;
  }
  .block.features .col-pip.feature:not(.feature--v2) .row-pip > .col-text {
    -ms-flex-preferred-size: 0% !important;
    -webkit-flex-basis: 0% !important;
    -moz-flex-basis: 0% !important;
    -ms-flex-basis: 0% !important;
    flex-basis: 0% !important;
    -webkit-flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
    -moz-flex-shrink: 1 !important;
    -ms-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    -moz-flex-grow: 1 !important;
    -ms-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }
}
.pip.video-pip .video-container {
  position: relative;
  padding-top: 50%;
}
.pip.video-pip .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pip.facebook-likebox-pip {
  position: relative;
  min-height: 150px;
}
.pip.facebook-likebox-pip .facebook-pip-inner {
  overflow-x: auto;
  overflow-y: hidden;
  min-height: 150px;
}
.pip.MapPip-pip.disabled {
  background-image: url(../../../studio/image/googleMapEmpireState.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
}
.paypal-pip {
  margin: auto;
  width: 100%;
}
.paypal-pip.small form.paypal-button,
.paypal-pip.small .paypal-placeholder,
.paypal-pip.small .paypal-addToCart {
  background-image: url(https://www.paypalobjects.com/webstatic/en_US/i/buttons/buy-logo-small.png);
  height: 26px;
  line-height: 26px;
}
.paypal-pip.small .paypal-button-wrapper {
  max-width: 158px;
}
.paypal-pip.medium form.paypal-button,
.paypal-pip.medium .paypal-placeholder,
.paypal-pip.medium .paypal-addToCart {
  background-image: url(https://www.paypalobjects.com/webstatic/en_US/i/buttons/buy-logo-medium.png);
  height: 32px;
  line-height: 32px;
}
.paypal-pip.medium .paypal-button-wrapper {
  max-width: 170px;
}
.paypal-pip.large form.paypal-button,
.paypal-pip.large .paypal-placeholder,
.paypal-pip.large .paypal-addToCart {
  background-image: url(https://www.paypalobjects.com/webstatic/en_US/i/buttons/buy-logo-large.png);
  height: 44px;
  line-height: 44px;
}
.paypal-pip.large .paypal-button-wrapper {
  max-width: 228px;
}
.paypal-pip.add-to-cart form.paypal-button,
.paypal-pip.add-to-cart .paypal-placeholder,
.paypal-pip.add-to-cart .paypal-addToCart {
  background-image: none;
  background-color: #fab826;
  width: 155px;
  border-radius: 4px;
  text-transform: uppercase;
  text-align: center;
  color: white;
  cursor: pointer;
  margin: auto;
}
.paypal-pip .paypal-placeholder {
  background-size: 100%;
  background-repeat: no-repeat;
}
.paypal-pip .quantityField {
  width: 35px;
  margin: 0 10px;
  padding: 5px;
  text-align: center;
}
.paypal-pip.editable {
  cursor: pointer;
}
.paypal-pip button.paypal-button {
  width: 100%;
  height: 100%;
}
.paypal-pip .centerStack .paypal-purchase-wrapper {
  text-align: center;
}
.paypal-pip .centerStack .quantitySelection {
  display: block;
}
.paypal-pip .centerStack .paypal-button-wrapper {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.paypal-pip.hasQuantity {
  text-align: left;
}
.paypal-pip.hasQuantity .paypal-button-wrapper {
  width: 70%;
}
.paypal-pip.hasQuantity .paypal-placeholder,
.paypal-pip.hasQuantity .paypal-addToCart,
.paypal-pip.hasQuantity .paypal-button-wrapper > div {
  width: 100%;
}
.paypal-pip.hasQuantity .paypal-button-wrapper,
.paypal-pip.hasQuantity .quantitySelection {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .paypal-pip.hasQuantity:not(.is-centerStacked) .paypal-purchase-wrapper {
    text-align: center;
  }
  .paypal-pip.hasQuantity:not(.is-centerStacked) .quantitySelection {
    display: block;
  }
  .paypal-pip.hasQuantity:not(.is-centerStacked) .paypal-button-wrapper {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
}
.paypal-pip.is-centerStacked .paypal-purchase-wrapper {
  text-align: center;
}
.paypal-pip.is-centerStacked .quantitySelection {
  display: block;
}
.paypal-pip.is-centerStacked .paypal-button-wrapper {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.paypal-pip.is-centerStacked .paypal-button-wrapper {
  margin-left: auto;
  margin-right: auto;
}
.paypal-pip .paypal-button {
  padding: 0;
  border: none;
  margin: auto;
  border-radius: 0;
  overflow: hidden;
  content: '';
  color: transparent;
  text-shadow: none;
  cursor: pointer;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: transparent;
}
.paypal-pip .paypal-button:before,
.paypal-pip .paypal-button:after {
  display: none;
}
.title-label,
.price-label {
  padding-bottom: 5px;
  font-size: 1.15em;
  text-align: center;
}
.paypal-button-wrapper {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .paypal-button-wrapper {
    margin: 0;
  }
}
.block-content {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-flow: column;
  -moz-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}
.col-pip {
  display: block;
  margin: 0 0 40px;
}
@media (min-width: 768px) {
  .col-pip {
    margin: 0 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -ms-flex-preferred-size: 0%;
    -webkit-flex-basis: 0%;
    -moz-flex-basis: 0%;
    -ms-flex-basis: 0%;
    flex-basis: 0%;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    -moz-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
  }
}
.row-pip {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.row-pip:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .row-pip {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.row-pip:last-of-type .col-pip:last-of-type {
  margin-bottom: 0;
}
.button-quark {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  border: 0 solid currentColor;
  color: #cccccc;
  text-align: center;
  line-height: 1.2em;
  text-decoration: none;
  vertical-align: baseline;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
@media (min-width: 768px) {
  .button-quark {
    width: auto;
  }
}
.button-quark > span,
.button-quark > .rich-text-editable-container {
  width: 100%;
  padding: 1em 2em;
  display: inline-block;
}
.button-quark:hover > span,
.button-quark:hover > .rich-text-editable-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
}
.button-quark b,
.button-quark strong {
  font-weight: bold;
}
.button-quark u {
  text-decoration: underline;
}
.button-quark i,
.button-quark em {
  font-style: italic;
}
.button-quark.square {
  border-radius: 0;
}
.button-quark.soft {
  border-radius: 3px;
}
.button-quark.rounded {
  border-radius: 25em;
}
.button-quark.flat {
  border-color: transparent;
  box-shadow: none;
}
.button-quark.buttonOutline {
  border-color: currentcolor;
  box-shadow: none;
}
.button-quark.depth {
  border-color: transparent;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.15));
}
.button-quark-background-color1 {
  background-color: #821234;
  color: #fdfafb;
}
.button-quark-background-color1.buttonOutline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #821234;
  color: #821234;
}
.button-quark-background-color2 {
  background-color: #5f001d;
  color: #fdfafb;
}
.button-quark-background-color2.buttonOutline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #5f001d;
  color: #5f001d;
}
.button-quark-background-color3 {
  background-color: #bf4f71;
  color: #fdfafb;
}
.button-quark-background-color3.buttonOutline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #bf4f71;
  color: #bf4f71;
}
.button-quark-background-color4 {
  background-color: #fdfafb;
  color: #fdfafb;
}
.button-quark-background-color4.buttonOutline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #fdfafb;
  color: #fdfafb;
}
.button-quark-background-color5 {
  background-color: #1b050c;
  color: #fdfafb;
}
.button-quark-background-color5.buttonOutline {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #1b050c;
  color: #1b050c;
}
.button-quark .rich-text-editable-container p span,
.button-quark .rich-text-content p span {
  line-height: 100%;
}
.lightbox {
  z-index: 101;
  opacity: 0;
  transition: opacity .2s;
  -webkit-transition: opacity .2s;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.lightbox.lightbox--visible {
  pointer-events: all;
  opacity: 1;
}
.lightbox-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}
.lightbox-image {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 70%;
  max-height: 95%;
  cursor: pointer;
}
.lightbox-xButton {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-family: Helvetica, Arial, sans-serif;
  cursor: pointer;
  color: white;
}
.lightbox-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  width: 40px;
  height: 100px;
  cursor: pointer;
  opacity: 0.6;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
}
.lightbox-nav:hover {
  opacity: 1;
}
.lightbox-nav:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  margin: auto;
  width: 20px;
  height: 20px;
  vertical-align: top;
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: white;
}
.lightbox-nav--next {
  right: 0;
}
.lightbox-nav--next:before {
  right: 6px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.lightbox-nav--previous {
  left: 0;
}
.lightbox-nav--previous:before {
  left: 6px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.shoppingCart {
  font-family: "Source Sans Pro", sans-serif;
  font-variant: inherit;
  text-transform: inherit;
  position: fixed;
  right: 16px;
  top: 75px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  cursor: pointer;
  z-index: 10;
}
.shoppingCart:after {
  content: attr(data-quantity);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 25px;
  height: 16px;
  font-size: 0.75em;
  line-height: 16px;
  background-color: #2c88e1;
  color: #ffffff;
  font-weight: 100;
  border-radius: 99em;
  text-align: center;
  -webkit-transform: translate(40%, -40%);
  transform: translate(40%, -40%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.shoppingCart.shoppingCart--large:after {
  content: '99+';
  width: 30px;
}
.shoppingCart:not(.shoppingCart--open) .shoppingCart__title,
.shoppingCart:not(.shoppingCart--open) .shoppingCart__contents {
  display: none;
}
.shoppingCart.shoppingCart--open {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 20px;
  border-radius: 0;
  cursor: default;
}
.shoppingCart.shoppingCart--open .shoppingCart__icon {
  display: none;
}
.shoppingCart.shoppingCart--open .shoppingCart__close {
  display: block;
}
@media (min-width: 769px) {
  .shoppingCart.shoppingCart--open {
    width: 400px;
    height: auto;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    position: fixed;
    top: 130px;
    right: 0;
    left: auto;
    bottom: auto;
  }
  .shoppingCart.shoppingCart--open .shoppingCart__icon {
    display: block;
  }
  .shoppingCart.shoppingCart--open .shoppingCart__close {
    display: none;
  }
}
.shoppingCart.shoppingCart--open:after {
  display: none;
}
.shoppingCart__item__template {
  display: none;
}
.shoppingCart__title {
  line-height: 23px;
  font-size: 1.25em;
  text-align: left;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding-bottom: 20px;
  z-index: 1;
  background-color: #ffffff;
}
@media (min-width: 769px) {
  .shoppingCart__title {
    position: relative;
    margin: 0;
    z-index: auto;
  }
}
.shoppingCart__close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border: 1px solid;
  text-transform: uppercase;
  font-size: 0.75em;
  cursor: pointer;
  display: none;
  z-index: 2;
}
.shoppingCart__contents {
  text-align: center;
  padding-top: 63px;
  padding-bottom: 110px;
  height: 100%;
  overflow: auto;
}
@media (min-width: 769px) {
  .shoppingCart__contents {
    padding: 0;
  }
}
.shoppingCart__emptyNotice {
  background-color: #f0f0f0;
  border: 1px solid #d9d9d9;
  padding: 20px 0;
  font-size: 1.25em;
  display: none;
}
.shoppingCart__items {
  margin-bottom: 25px;
}
@media (min-width: 769px) {
  .shoppingCart__items {
    margin-bottom: 40px;
    max-height: calc(100vh - 420px);
    min-height: 50px;
    overflow: auto;
  }
}
.shoppingCart__contents--empty {
  padding-top: 83px;
}
@media (min-width: 769px) {
  .shoppingCart__contents--empty {
    padding-top: 0;
  }
}
.shoppingCart__contents--empty .shoppingCart__emptyNotice {
  display: block;
}
.shoppingCart__contents--empty .shoppingCart__items {
  display: none;
}
.shoppingCart__contents--empty .shoppingCart__checkout__wrapper {
  display: none;
}
.shoppingCart__contents--empty .shoppingCart__title {
  text-align: center;
  margin-top: 60px;
}
@media (min-width: 769px) {
  .shoppingCart__contents--empty .shoppingCart__title {
    text-align: left;
    margin-top: 0;
  }
}
.shoppingCart__item {
  border-top: 1px solid #d9d9d9;
  padding: 20px 0;
  text-align: right;
  font-size: 1.125em;
}
.shoppingCart__item:after {
  content: '';
  clear: both;
  display: table;
}
.shoppingCart__item.hasQuantity .item-name {
  max-width: 30%;
}
@media (min-width: 769px) {
  .shoppingCart__item.hasQuantity .item-name {
    max-width: 40%;
  }
}
.shoppingCart__item .item-name {
  float: left;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  padding-right: 20px;
  max-width: 65%;
}
@media (min-width: 769px) {
  .shoppingCart__item .item-name {
    max-width: 75%;
  }
}
.shoppingCart__item .item-quantity {
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
}
.shoppingCart__item .item-price {
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
}
.shoppingCart__item .item-remove {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.shoppingCart__item .item-remove:after,
.shoppingCart__item .item-remove:before {
  content: ' ';
  width: 1px;
  height: 20px;
  background-color: #000000;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.shoppingCart__item .item-remove:before {
  transform: rotate(45deg);
}
.shoppingCart__item .item-remove:after {
  transform: rotate(-45deg);
}
.shoppingCart__checkout__wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: #ffffff;
}
@media (min-width: 769px) {
  .shoppingCart__checkout__wrapper {
    position: relative;
    padding: 0;
  }
}
.shoppingCart__checkout {
  background-color: #f0f0f0;
  border: 1px solid #d9d9d9;
  padding: 10px;
}
@media (min-width: 769px) {
  .shoppingCart__checkout {
    padding: 20px;
  }
}
.shoppingCart__total {
  display: block;
  font-size: 1.25em;
  margin-bottom: 10px;
}
.shoppingCart__total .total-amount {
  color: #398be1;
}
@media (min-width: 769px) {
  .shoppingCart__total {
    margin-bottom: 20px;
  }
}
.shoppingCart__button__checkout {
  display: block;
  margin-bottom: 10px;
  background: #398be1;
  color: #ffffff;
  border-radius: 3px;
  padding: 15px;
  text-transform: uppercase;
  cursor: pointer;
}
.shoppingCart__button__checkout:hover {
  background-color: #4f98e4;
}
@media (min-width: 769px) {
  .shoppingCart__button__checkout {
    margin-bottom: 20px;
  }
}
.shoppingCart__button__continue {
  display: block;
  color: #398be1;
  text-transform: lowercase;
  cursor: pointer;
}
.mobile-menu-active .shoppingCart {
  z-index: 9;
}
@media (min-width: 769px) {
  .shoppingCart {
    top: 130px;
    right: 0;
    width: 62px;
    height: 58px;
    background-color: #ffffff;
    box-shadow: 0 8px 40px -8px rgba(0, 0, 0, 0.3);
    border-radius: 3px 0 0 3px;
  }
}
.shoppingCart:not([data-quantity]):after,
.shoppingCart[data-quantity="0"]:after {
  display: none;
}
.shoppingCart__openHandler {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (min-width: 769px) {
  .shoppingCart__openHandler {
    width: 62px;
    height: 46px;
  }
}
.shoppingCart__icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px;
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
@media (min-width: 769px) {
  .shoppingCart__icon {
    margin: 20px;
  }
}
@media (min-width: 769px) {
  .shoppingCart__icon {
    fill: #000000;
  }
}
.minWidth-0 {
  min-width: 0;
}
.mw4_5 {
  max-width: 12rem;
}
.flex-basis-100 {
  flex-basis: 100%;
}
@media (min-width: 30em) {
  .flex-basis-third-ns {
    flex-basis: calc(33.33333333%);
  }
}
.flex-basis-auto {
  flex-basis: auto;
}
.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
.flex-3 {
  flex: 3;
}
.top-3 {
  top: 3rem;
}
.top-4 {
  top: 4rem;
}
.top-50 {
  top: 50%;
}
.break-all {
  word-break: break-all;
}
@media (min-width: 769px) {
  .flex-basis-48-l {
    flex-basis: 48%;
  }
}
.flex-grow-0 {
  -ms-flex-positive: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
}
.flex-grow-1 {
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}
.flex-grow-2 {
  -ms-flex-positive: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  -ms-flex-grow: 2;
  flex-grow: 2;
}
.flex-grow-3 {
  -ms-flex-positive: 3;
  -webkit-flex-grow: 3;
  -moz-flex-grow: 3;
  -ms-flex-grow: 3;
  flex-grow: 3;
}
.flex-grow-5 {
  -ms-flex-positive: 5;
  -webkit-flex-grow: 5;
  -moz-flex-grow: 5;
  -ms-flex-grow: 5;
  flex-grow: 5;
}
@media (min-width: 30em) {
  .flex-basis-third-ns {
    flex-basis: calc(33.33333333%);
  }
}
.f4_5 {
  font-size: 1.125rem;
}
.top-50 {
  top: 50%;
}
.ma-auto {
  margin: auto;
}
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.mb-auto {
  margin-bottom: auto;
}
.mt-auto {
  margin-top: auto;
}
.document .mw-100 {
  max-width: 100%;
}
.translateX25 {
  transform: translateX(25%);
}
.translateX-25 {
  transform: translateX(-25%);
}
.translateX-50 {
  transform: translateX(-50%);
}
.translateX50 {
  transform: translateX(50%);
}
.translateX-75 {
  transform: translateX(-75%);
}
.translateX75 {
  transform: translateX(75%);
}
.reflect {
  transform: scaleX(-1);
}
.rotate-270-reflect {
  transform: rotate(270deg) scaleX(-1);
}
.rotate-180-reflect {
  transform: rotate(180deg) scaleX(-1);
}
@media (min-width: 30em) {
  .translateX-25-ns {
    transform: translateX(-25%);
  }
  .translateX25-ns {
    transform: translateX(25%);
  }
  .translateX-50-ns {
    transform: translateX(-50%);
  }
  .translateX50-ns {
    transform: translateX(50%);
  }
  .translateX-75-ns {
    transform: translateX(-75%);
  }
  .translateX75-ns {
    transform: translateX(75%);
  }
}
@media (min-width: 60em) {
  .mb-auto-l {
    margin-bottom: auto;
  }
  .mt-auto-l {
    margin-top: auto;
  }
}
.cornerImage {
  pointer-events: none;
}
.block.header-crafty,
.block.header-crafty-logo {
  position: relative;
  height: 450px;
}
@media screen and (max-width: 480px) {
  .block.header-crafty,
  .block.header-crafty-logo {
    height: 350px;
  }
}
.block.header-crafty .block-background .block-background-color,
.block.header-crafty-logo .block-background .block-background-color {
  height: auto;
  bottom: 50%;
  background: #000 !important;
}
@media screen and (max-width: 480px) {
  .block.header-crafty .block-background .block-background-color,
  .block.header-crafty-logo .block-background .block-background-color {
    bottom: 0;
  }
}
.block.header-crafty .block-content,
.block.header-crafty-logo .block-content {
  width: 100%;
  height: 100%;
  max-width: none !important;
  padding: 0;
  text-align: center;
}
.block.header-crafty .block-content .hero-group,
.block.header-crafty-logo .block-content .hero-group {
  height: calc(50% - 30px);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .block.header-crafty .block-content .hero-group,
  .block.header-crafty-logo .block-content .hero-group {
    height: calc(95% - 30px);
  }
}
.block.header-crafty .block-content .hero-group .header-title,
.block.header-crafty-logo .block-content .hero-group .header-title {
  width: 80%;
  margin: 0 auto 10px;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .block.header-crafty .block-content .hero-group .header-title .title,
  .block.header-crafty-logo .block-content .hero-group .header-title .title {
    line-height: 1.2;
  }
}
.block.header-crafty .block-content .hero-group .header-subtitle,
.block.header-crafty-logo .block-content .hero-group .header-subtitle {
  width: 80%;
  margin: 0 auto;
  z-index: 2;
}
.block.header-crafty .block-content .navigation-pip,
.block.header-crafty-logo .block-content .navigation-pip {
  z-index: 3;
  width: 100%;
  min-height: 60px;
  margin: 5em auto 0;
  padding: 0;
  line-height: 60px;
}
@media screen and (max-width: 1024px) {
  .block.header-crafty .block-content .navigation-pip,
  .block.header-crafty-logo .block-content .navigation-pip {
    background-color: transparent !important;
  }
}
.block.header-crafty .block-content .navigation-pip .link,
.block.header-crafty-logo .block-content .navigation-pip .link {
  margin: 0;
}
.block.header-crafty .block-content .navigation-pip .link a,
.block.header-crafty-logo .block-content .navigation-pip .link a {
  display: block;
  padding: 0 20px;
  text-decoration: none !important;
}
.block.header-crafty .block-content .navigation-pip .link-placeholder:before,
.block.header-crafty-logo .block-content .navigation-pip .link-placeholder:before {
  top: 0;
  padding: 0;
}
.block.header-crafty-logo .block-content .logo-pip {
  margin-bottom: 5px;
  margin-top: 30px;
}
.block.header-crafty-logo .block-content .logo-pip .logo-type-container {
  left: -10px;
}
.block.header-crafty-logo .block-content .logo-pip.graphic-mode .logo-type-container {
  bottom: -20px;
}
.block.header-crafty-logo .block-content .homeLink {
  width: 100%;
}
.block.header-crafty-logo .block-content .hero-group .header-title {
  width: auto;
  margin-bottom: 0;
  font-size: 2.125em;
  line-height: 1.4em;
}
.block.header-crafty-logo .block-content .icon-pip.is-resizable .icon-container {
  width: auto !important;
  height: auto !important;
}
.block.header-crafty-logo.slim {
  height: 350px;
}
.block.header-crafty-logo.slim .block-background .block-background-color {
  bottom: 0;
}
.block.header-crafty-logo.slim .hero-group {
  height: calc(100% - 90px);
}
.block.header-crafty-logo.slim .block-image-edit-change-wrapper,
.block.header-crafty-logo.slim .block-image-crop-toolbar-wrapper {
  bottom: 70px;
}
.block.phone-number .row--title {
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .block.phone-number .number .title {
    font-size: 30px;
  }
}
.block.alternating-timeline {
  min-height: 200px;
}
.block.alternating-timeline .row--header {
  margin-bottom: 20px;
}
.block.alternating-timeline .row--subheader {
  margin-bottom: 60px;
}
.block.alternating-timeline .factory-pip > .row-pip {
  margin-bottom: 0;
}
.block.alternating-timeline .factory-pip .col-pip > .row-pip {
  margin-bottom: 20px;
}
.block.alternating-timeline .pip.group-pip.v2 .pip.factory-pip:before,
.block.alternating-timeline .pip.group-pip.v2 .pip.factory-pip:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.block.alternating-timeline .pip.group-pip.v2 .pip.factory-pip:first-of-type:before {
  top: 50%;
  height: 50%;
}
.block.alternating-timeline .pip.group-pip.v2 .pip.factory-pip:last-of-type:before {
  bottom: 50%;
  height: 50%;
}
.block.alternating-timeline .pip.group-pip.v2 .pip.factory-pip:only-of-type:before {
  bottom: 50%;
  height: 0;
}
.block.alternating-timeline .pip.factory-pip {
  min-height: 300px;
  margin-bottom: 0;
}
.block.alternating-timeline .pip.factory-pip:before,
.block.alternating-timeline .pip.factory-pip:after {
  display: none;
}
@media (min-width: 768px) {
  .block.alternating-timeline .pip.factory-pip:before,
  .block.alternating-timeline .pip.factory-pip:after {
    display: block;
  }
}
.block.alternating-timeline .pip.factory-pip:before {
  outline: none !important;
  width: 2px;
}
.block.alternating-timeline .pip.factory-pip:after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.block.alternating-timeline .pip.factory-pip .title-pip div,
.block.alternating-timeline .pip.factory-pip .paragraph-pip {
  text-align: left;
}
.block.alternating-timeline .pip.factory-pip > .row-pip {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .block.alternating-timeline .pip.factory-pip:nth-child(2n+1) .col-pip:nth-child(3) {
    -ms-flex-order: -1;
    -webkit-order: -1;
    -moz-order: -1;
    -ms-order: -1;
    order: -1;
  }
}
@media (min-width: 768px) and screen and (max-width: 480px) {
  .block.alternating-timeline .pip.factory-pip:nth-child(2n+1) .col-pip:nth-child(3) {
    -ms-flex-order: 0;
    -webkit-order: 0;
    -moz-order: 0;
    -ms-order: 0;
    order: 0;
  }
}
.block.alternating-timeline .pip.factory-pip .edit-ui.add {
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  width: 40px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.block.alternating-timeline .pip.factory-pip:only-of-type .edit-ui.remove {
  display: none;
}
.block.alternating-timeline .factory-pip .image-pip {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  -moz-flex-basis: auto;
  -ms-flex-basis: auto;
  flex-basis: auto;
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
}
.block.text-icon .icon-pip {
  margin: auto;
  width: 10%;
}
.block.text-icon .icon-container {
  margin: 0 auto;
}
.block.text-icon .icon-container svg {
  height: 80px;
  width: 80px;
}
.block.text-icon .is-resizable .icon-container svg {
  width: auto;
  height: auto;
}
.block.social-links .social-icon {
  width: 64px;
  height: 64px;
}
.block.social-links .social-icon .icon {
  width: 32px;
}
.block.footer-navigation .navigation-group {
  margin: auto;
  text-align: center;
}
.block.footer-navigation .navigation-pip {
  display: inline-block;
  margin: auto;
  line-height: 1.6;
}
.block.footer-navigation .paragraph-pip .rich-text-editable-container,
.block.footer-navigation .paragraph-pip .rich-text-content {
  opacity: 1;
}

/********/
.block.header-crafty[data-tower-id="1450731347553"],
.block.header-crafty-logo[data-tower-id="1450731347553"] {
  background-color: #fdfafb;
}
.block.header-crafty[data-tower-id="1450731347553"] .navigation-pip,
.block.header-crafty-logo[data-tower-id="1450731347553"] .navigation-pip {
  background: #821234;
}
.block.header-crafty[data-tower-id="1450731347553"] .navigation-pip .link:hover,
.block.header-crafty-logo[data-tower-id="1450731347553"] .navigation-pip .link:hover,
.block.header-crafty[data-tower-id="1450731347553"] .navigation-pip .link a.navigation-link-active-page,
.block.header-crafty-logo[data-tower-id="1450731347553"] .navigation-pip .link a.navigation-link-active-page {
  background: rgba(253, 250, 251, 0.07);
}
.block.header-crafty[data-tower-id="1450731347553"] .navigation-pip .link a,
.block.header-crafty-logo[data-tower-id="1450731347553"] .navigation-pip .link a {
  color: #fdfafb;
}
[data-tower-id='1450731347553'] .block-content { opacity: 1 !important; }
/********/
[data-tower-id='1456935924033'] .block-content { opacity: 1 !important; }
/********/
.block.alternating-timeline[data-tower-id="1456935924038"] .pip.factory-pip:before {
  background-color: #ae7d8c;
}
.block.alternating-timeline[data-tower-id="1456935924038"] .pip.factory-pip:after {
  background-color: #ae7d8c;
}
.block.alternating-timeline[data-tower-id="1456935924038"] .pip.factory-pip svg:not(.icon),
.block.alternating-timeline[data-tower-id="1456935924038"] .pip.factory-pip svg:not(.icon) * {
  fill: #821234;
}
[data-tower-id='1456935924038'] .block-content { opacity: 1 !important; }
/********/
.block.text-icon[data-tower-id="1456935924071"] .icon-container svg * {
  fill: #fdfafb;
  stroke: #fdfafb;
}
[data-tower-id='1456935924071'] .block-content { opacity: 1 !important; }
/********/
[data-tower-id='1456935924076'] .block-content { opacity: 1 !important; }
/********/
[data-tower-id='1450731347612'] .block-content { opacity: 1 !important; }

# Added Marc Lisvich 2017-11-2017%


#info {
    font-size: 20px;
}
#div_start {
    float: right;
}
#headline {
    text-decoration: none
}
#results {
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
    min-height: 150px;
}
#start_button {
    border: 0;
    background-color:transparent;
    padding: 0;
}
.interim {
    color: gray;
}
.final {
    color: black;
    padding-right: 3px;
}
.button {
    display: none;
}
.marquee {
    margin: 20px auto;
}

#buttons {
    margin: 10px 0;
    position: relative;
    top: -50px;
}

#copy {
    margin-top: 20px;
}

#copy > div {
    display: none;
    margin: 0 70px;
}

// Added
a.c1 {font-weight: normal;}

#info {
    font-size: 20px;
    }
    #div_start {
    float: right;
    }
    #headline {
    text-decoration: none
    }
    #results {
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
    min-height: 150px;
    }
    #start_button {
    border: 0;
    background-color:transparent;
    padding: 0;
    }
    .interim {
    color: gray;
    }
    .final {
    color: black;
    padding-right: 3px;
    }
    .button {
    display: none;
    }
    .marquee {
    margin: 20px auto;
    }

    #buttons {
    margin: 10px 0;
    position: relative;
    top: -50px;
    }

    #copy {
    margin-top: 20px;
    }

    #copy > div {
    display: none;
    margin: 0 70px;
    }

    a.c1 {font-weight: normal;}
