/*
 * com.onelittledesigner.vivid_tiles_css
 */

.hf-cards,
.hf-cards * {
  box-sizing: border-box;
}
.hf-cards {
	--hf-point: calc(var(--hf-width)*0.2);
  --hf-point2x: calc(var(--hf-point)*2);
  font-family: helveticaNeue;
}
.hf-cards,
.hf-cards > [tag="node"] {
  display: flex;
  flex-wrap: wrap;
}
.hf-cards > [tag="node"] {
  width: 100%;
}
.hf-cards > [tag="node"] > div {
  margin: 0;
}
.hf-cards > [tag="node"] > div[tag="button"] {
  margin: 24px !important;
}
 .hf-card {
  max-width: 100%;
}
 .hf-card-inner {
  position: relative;
  width: var(--hf-width);
  max-width: 100%;
  height: 100%;
}
 .hf-card-content {
  position: relative;
  z-index: 10;
}
 .hf-card-content-inner {
  padding: 0;
  border-radius: var(--hf-border-radius);
  border-width: var(--hf-bdrSize);
  border-style: solid;
  width: 100%;
}
.hf-v.hf-ext:not(.hf-squared) .hf-card-content-inner {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
 .hf-v.hf2-ext:not(.hf2-squared) .hf-card-content-inner {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
 .hf-card-content-inner > .hf-grad {
  min-height: calc(var(--hf-point) + var(--hf-lyrSize));
}
 .hf-v.hf-no-point.hf2-no-point .hf-card-content-inner > .hf-grad {
  min-height: calc(60px + var(--hf-lyrSize));
}
.hf-card-content-inner > .hf-grad > div {
  padding: var(--hf-innerPaddingY) var(--hf-innerPaddingX);
}
.hf2-ext .hf-card-content-inner > .hf-grad > div > div:first-child {
  margin-top: var(--hf-innerPaddingYNeg);
}
.hf-ext .hf-card-content-inner > .hf-grad > div > div:last-child {
  margin-bottom: var(--hf-innerPaddingYNeg);
}
.hf-v.hf2-ext:not(.hf2-no-point) .hf-card-content-inner > .hf-grad > div {
  padding-top: calc(var(--hf-innerPaddingY) - var(--hf-border-radius));
}
.hf-v.hf-ext:not(.hf-no-point)  .hf-card-content-inner > .hf-grad > div {
  padding-bottom: calc(var(--hf-innerPaddingY) - var(--hf-border-radius));
}
.hf-v.hf2-ext.hf2-rounded .hf-card-content-inner > .hf-grad > div {
  padding-top: calc(var(--hf-innerPaddingY) + 12px + var(--hf-border-radius));
}
.hf-v.hf-ext.hf-rounded  .hf-card-content-inner > .hf-grad > div {
  padding-bottom: calc(var(--hf-innerPaddingY) + 12px + var(--hf-border-radius));
}
 .hf-card-header,
 .hf-card-footer {
  position: relative;
  min-height: calc(var(--hf-point));
}
 .hf-v.hf2-ext .hf-card-header,
 .hf-v.hf-ext .hf-card-footer {
  min-height: calc(var(--hf-point) + var(--hf-border-radius) + var(--hf-bdrSize));
}
 .hf2-no-point .hf-card-header,
 .hf-no-point .hf-card-footer {
  min-height: 72px;
}
 .hf-v.hf2-no-content .hf-card-header,
 .hf-v.hf-no-content .hf-card-footer {
  min-height: var(--hf-point);
}
 .hf-v.hf2-no-content.hf2-no-point .hf-card-header,
 .hf-v.hf-no-content.hf-no-point .hf-card-footer {
  min-height: 60px;
}
 .hf-v.hf2-split .hf-card-header,
 .hf-v.hf-split .hf-card-footer {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: var(--hf-point2x);
  height: var(--hf-point2x);
  margin-left: auto;
  margin-right: auto;
}
 .hf-v.hf2-split .hf-card-header {
  margin-bottom: calc(var(--hf-point2x)/2 * -1);
}
 .hf-v.hf-split .hf-card-footer {
  margin-top: calc(var(--hf-point2x)/2 * -1);
}
 .hf-v.hf2-split.hf2-no-point .hf-card-header,
 .hf-v.hf-split.hf-no-point .hf-card-footer {
  width: 120px;
  height: 120px;
}
 .hf-v.hf2-split.hf2-no-point .hf-card-header {
  margin-bottom: -60px;
}
 .hf-v.hf-split.hf-no-point .hf-card-footer {
  margin-top: -60px;
}
 .hf-v.hf2-split .hf-card-header > div,
 .hf-v.hf-split .hf-card-footer > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  border-radius: var(--hf-border-radius);
  background-position: center;
}

 .hf-v.hf2-detached:not(.hf2-no-content) .hf-card-header,
 .hf-v.hf-detached:not(.hf-no-content) .hf-card-footer {
  display: grid;
  width: 100%;
}
 .hf-v.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  margin-top: var(--hf-lyrSize);
}
 .hf-v.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  margin-bottom: var(--hf-lyrSize);
}
 .hf-v.hf2-detached.hf2-angle:not(.hf2-no-content) .hf-card-header > div,
 .hf-v.hf2-detached.hf2-angle-alt:not(.hf2-no-content) .hf-card-header > div,
 .hf-v.hf2-detached.hf2-rounded:not(.hf2-no-content) .hf-card-header > div {
  margin-top: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf-detached.hf-angle:not(.hf-no-content) .hf-card-footer > div,
 .hf-v.hf-detached.hf-angle-alt:not(.hf-no-content) .hf-card-footer > div,
 .hf-v.hf-detached.hf-rounded:not(.hf-no-content) .hf-card-footer > div {
  margin-bottom: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf2-no-content .hf-card-header > div,
 .hf-v.hf-no-content .hf-card-footer > div,
 .hf-v.hf2-ext .hf-card-header > div,
 .hf-v.hf-ext .hf-card-footer > div {
  display: none;
}
 .hf-card-header h1,
 .hf-card-header h2,
 .hf-card-header h3,
 .hf-card-footer h1,
 .hf-card-footer h2,
 .hf-card-footer h3,
 .hf-card-footer p {
  margin: 0;
}
 .hf-v.hf2-ext .hf-card-content-inner {
  border-top-width: 0px;
}
 .hf-v.hf-ext .hf-card-content-inner {
  border-bottom-width: 0px;
}
 .hf-gfx,
 .hf-div,
 .hf-border,
 .hf-gfx div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
 .hf-v .hf-bottom {
  top: calc(var(--hf-point) + var(--hf-lyrSize)*2  +  var(--hf-border-radius));
}
 .hf-v .hf-top {
  bottom: calc(var(--hf-point) + var(--hf-lyrSize)*2  +  var(--hf-border-radius));
}




.hf-v:not(.hf2-rounded) .hf-top,
.hf-v:not(.hf-rounded) .hf-bottom {
  clip-path: inset(calc(var(--hf-lyrSize)*2 + var(--hf-point) + var(--hf-border-radius) + 2px) 0 0 0);
  bottom: 0;
  top: 0;
}
/* .hf-v.hf-none .hf-top,
.hf-v.hf2-none .hf-bottom {
  clip-path: inset(0 round var(--hf-border-radius));
} */
/* ANGLE EXT */
.hf-v.hf-angle:not(.hf2-rounded) .hf-top,
.hf-v.hf2-angle:not(.hf-rounded) .hf-bottom {
  clip-path: inset(calc(var(--hf-lyrSize)*2 + var(--hf-point) + var(--hf-border-radius) + 16px) 0 0 0);
}
.hf-v.hf-angle.hf2-no-point .hf-bottom {
  z-index: 3;
}
.hf-v.hf-rounded.hf2-ext .hf-top,
.hf-v.hf2-angle.hf-no-point .hf-top {
  z-index: 4;
}
/* NO POINT */
.hf-v.hf-no-point:not(.hf-split):not(.hf-has-content):not(.hf2-rounded):not(.hf-rounded.hf-no-content) .hf-top {
  clip-path: inset(calc(var(--hf-lyrSize)*2 + var(--hf-border-radius)) 0 0 0);
  bottom: 0;
  top: 0;
}
.hf-v.hf2-no-point:not(.hf2-split):not(.hf2-has-content):not(.hf-rounded):not(.hf2-rounded.hf2-no-content) .hf-bottom {
  clip-path: inset(calc(var(--hf-lyrSize)*2 + var(--hf-border-radius)) 0 0 0);
  bottom: 0;
  top: 0;
}
/*no-point on top is not rotated*/
.hf-v.hf2-no-point:not(.hf-split):not(.hf-has-content):not(.hf2-rounded):not(.hf-rounded.hf-no-content) .hf-top,
.hf-v.hf2-no-point:not(.hf2-rounded) .hf-top {
  clip-path: inset(0 0 calc(var(--hf-lyrSize)*2 + var(--hf-point) + var(--hf-border-radius) + 2px) 0);
  bottom: 0;
  top: 0;
}
/*both no-point*/.hf-v.hf-no-point.hf2-no-point:not(.hf-split):not(.hf-has-content):not(.hf2-rounded):not(.hf2-rounded.hf2-no-content) .hf-top {
  clip-path: inset(0 0 calc(var(--hf-lyrSize)*2 + var(--hf-border-radius)) 0);
  bottom: 0;
  top: 0;
}
/*rounded ext*/.hf-card.hf-v.hf-no-point.hf-rounded.hf-ext:not(.hf2-rounded) .hf-card-inner .hf-border.hf-top {
  clip-path: inset(calc(var(--hf-lyrSize)*3 + var(--hf-border-radius)) 0 0 0);
  bottom: 0;
  top: 0;
}
/*rounded ext*/.hf-card.hf-v.hf2-no-point.hf2-rounded.hf2-ext:not(.hf-rounded) .hf-card-inner .hf-border.hf-bottom {
  clip-path: inset(calc(var(--hf-lyrSize)*3 + var(--hf-border-radius)) 0 0 0);
  bottom: 0;
  top: 0;
}
/*rounded ext squared top */.hf-card.hf-v.hf-no-point.hf-rounded.hf-ext.hf2-squared:not(.hf2-rounded) .hf-card-inner .hf-border.hf-top {
  clip-path: inset(0 0 calc(var(--hf-lyrSize)*3 + var(--hf-border-radius)) 0);
  bottom: 0;
  top: 0;
}
.hf-cards:not(.hf-c) .hf-gfx {
  z-index: 3;
}
 .hf-gfx div {
  width: 100%;
  height: 100%;
}
 .hf-gfx svg {
  overflow: visible;
}
 .hf-border {
  pointer-events: none;
}
/* icon */
.hf-v.hf2-ext.hf-card .hf-card-inner {
 padding-top: calc(var(--hf-lyrSize)*2 - var(--hf-bdrSize));
}
.hf-v.hf-ext.hf-card .hf-card-inner {
 padding-bottom: calc(var(--hf-lyrSize)*2 - var(--hf-bdrSize));
}
 .hf-v.hf2-detached.hf2-no-content.hf-card .hf-card-inner,
 .hf-v.hf2-split.hf-card .hf-card-inner {
  padding-top: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf-detached.hf-no-content.hf-card .hf-card-inner,
 .hf-v.hf-split.hf-card .hf-card-inner {
  padding-bottom: calc(var(--hf-lyrSize)*2);
}
 .hf-v .hf-card-content {
  height: 100%;
}
/* positioning */
 .hf-v .hf-card-inner .hf-bottom {
  will-change: transform;
}
 .hf-v .hf-top {
  will-change: transform;
  transform: rotateX(180deg);
  transform-origin: center;
}
 .hf-grad:before {
  z-index: 0;
}
 .hf-grad > div {
  position: relative;
  z-index: 1;
  display: grid;
}
 .hf-v.hf2-chevron .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-chevron .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point)),
    50% 100%,
    0 calc(100% - var(--hf-point))
  );
}
 .hf-v.hf2-chevron .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-chevron .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    50% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-chevron.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-chevron.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-chevron.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-chevron.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    var(--hf-bdrSize) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-chevron.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf-chevron.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf2-chevron-alt .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-chevron-alt .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    50% 100%,
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
  );
}
 .hf-v.hf2-chevron-alt .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-chevron-alt .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    50% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-chevron-alt.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-chevron-alt.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-chevron-alt.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-chevron-alt.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    var(--hf-bdrSize) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-chevron-alt.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf-chevron-alt.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf2-no-point .hf-top {
  transform: none;
}
 .hf-v.hf2-no-point .hf-top .hf-gfx,
 .hf-v.hf-no-point .hf-bottom .hf-gfx {
  filter: none;
}
 .hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-no-point .hf-bottom .hf-gfx-lyr2 div {
  bottom: 0px;
  top: auto;
}
 .hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-no-point .hf-bottom .hf-gfx-lyr1 div {
  bottom: var(--hf-lyrSize);
  height: auto;
}
 .hf-v.hf2-squared .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf2-squared .hf-top .hf-gfx-lyr2 div {
  border-radius: var(--hf-border-radius) var(--hf-border-radius) 0 0;
}
 .hf-v.hf-squared .hf-bottom .hf-gfx-lyr2 div,
 .hf-v.hf-squared .hf-bottom .hf-gfx-lyr1 div {
  border-radius: 0 0 var(--hf-border-radius) var(--hf-border-radius);
}
 .hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div {
  bottom: auto;
  top: 0px;
}
 .hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div {
  top: var(--hf-lyrSize);
  bottom: 0;
  height: auto;
}
 .hf-v.hf2-no-point .hf-card-content-inner {
  border-top-width: var(--hf-bdrSize);
}
 .hf-v.hf-no-point .hf-card-content-inner {
  border-bottom-width: var(--hf-bdrSize);
}
 .hf-v.hf2-no-point .hf-card-header,
 .hf-v.hf-no-point .hf-card-footer {
  min-height: 0;
}
 .hf-v.hf2-squared.hf2-no-content .hf-card-header,
 .hf-v.hf-squared.hf-no-content .hf-card-footer {
  min-height: var(--hf-lyrSize);
}
 .hf-v.hf-no-point.hf-ext.hf2-none .hf-bottom,
 .hf-v.hf2-no-point.hf2-ext.hf-none .hf-top {
   clip-path: none !important;
 }
.hf-v.hf2-rounded .hf-top .hf-gfx-lyr1 div,
.hf-v.hf2-rounded .hf-top .hf-gfx-lyr2 div {
  border-top-right-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
  border-top-left-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);

}
.hf-v.hf-rounded .hf-bottom .hf-gfx-lyr2 div,
.hf-v.hf-rounded .hf-bottom .hf-gfx-lyr1 div {
  border-bottom-right-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
  border-bottom-left-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
}
 .hf-v.hf-rounded.hf-detached.hf-has-content .hf-bottom .hf-gfx-lyr1 div,
 .hf-v.hf-rounded.hf-detached.hf-has-content .hf-bottom .hf-gfx-lyr2 div,
 .hf-v.hf-rounded.hf-ext .hf-card-content-inner {
  border-bottom-right-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
  border-bottom-left-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
}
 .hf-v.hf2-rounded.hf2-detached.hf2-has-content .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf2-rounded.hf2-detached.hf2-has-content .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf2-rounded.hf2-ext .hf-card-content-inner {
  border-top-right-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
  border-top-left-radius: calc(var(--hf-width)/2) calc((var(--hf-lyrSize)*3 + var(--hf-border-radius))/2);
}
 .hf-v.hf2-no-point.hf2-detached:not(.hf2-no-content) .hf-card-header,
 .hf-v.hf-no-point.hf-detached:not(.hf-no-content) .hf-card-footer {
  display: grid;
}
 .hf-v.hf2-no-point.hf2-ext .hf-card-header,
 .hf-v.hf-no-point.hf-ext .hf-card-footer {
  padding-top: 0;
  padding-bottom: 0;
  height: var(--hf-bdrSize);
}
 .hf-v.hf2-ribbon-tail .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-ribbon-tail .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% 100%,
    50% calc(100% - var(--hf-point)),
    0 100%
  );
}
 .hf-v.hf2-ribbon-tail .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-ribbon-tail .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-lyrSize)),
    50% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-ribbon-tail.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-ribbon-tail.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
    clip-path: polygon(
      0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
      100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
      100% calc(100% - var(--hf-lyrSize)*2),
      50% calc(100% - var(--hf-point) - var(--hf-lyrSize)*2),
      0 calc(100% - var(--hf-lyrSize)*2)
      );
}
 .hf-v.hf2-ribbon-tail.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-ribbon-tail.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize)),
    50% calc(100% - var(--hf-point) - var(--hf-lyrSize)*2),
    var(--hf-bdrSize)  calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize))
    );
}
 .hf-v.hf2-ribbon-tail.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: var(--hf-point);
}
 .hf-v.hf-ribbon-tail.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: var(--hf-point);
}
 .hf-v.hf2-ribbon-tail-2 .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-ribbon-tail-2 .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% 100%,
    50% calc(100% - var(--hf-point)),
    0 100%
  );
}
 .hf-v.hf2-ribbon-tail-2 .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-ribbon-tail-2 .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    50% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-ribbon-tail-2.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-ribbon-tail-2.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-ribbon-tail-2.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-ribbon-tail-2.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 ),
    50% calc(100% - var(--hf-lyrSize)*2),
    var(--hf-bdrSize) calc(100% - var(--hf-point) - var(--hf-lyrSize)*2 )
    );
}
 .hf-v.hf2-ribbon-tail-2.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf-ribbon-tail-2.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: calc(var(--hf-point) - var(--hf-border-radius));
}
 .hf-v.hf2-angle.hf2-ext .hf-card-header,
 .hf-v.hf-angle.hf-ext  .hf-card-footer {
  min-height: calc(var(--hf-point) + 16px);
}
 .hf-v.hf2-angle .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-angle .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 100%
  );
}
 .hf-v.hf2-angle .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-angle .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-angle.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-angle.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize) ),
    0 calc(100% - var(--hf-lyrSize)*2)
    );
}
 .hf-v.hf2-angle.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-angle.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    var(--hf-bdrSize) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize))
    );
}
 .hf-v.hf2-angle.hf2-flip-top .hf-top .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% 100%,
    0% calc(100% - var(--hf-point) - var(--hf-lyrSize))
  );
}
 .hf-v.hf2-angle.hf2-flip-top .hf-top .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-angle.hf2-ext.hf2-flip-top .hf-top .hf-gfx-bdr div{
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-lyrSize)*2),
    0% calc(100% - var(--hf-point) - var(--hf-lyrSize) )
    );
}
 .hf-v.hf2-angle.hf2-ext.hf2-flip-top .hf-top .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize)),
    var(--hf-bdrSize)  calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf-angle.hf-flip-bot .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% 100%,
    0% calc(100% - var(--hf-point) - var(--hf-lyrSize))
  );
}
 .hf-v.hf-angle.hf-flip-bot .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf-angle.hf-ext.hf-flip-bot .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-lyrSize)*2),
    0% calc(100% - var(--hf-point) - var(--hf-lyrSize) )
    );
}
 .hf-v.hf-angle.hf-ext.hf-flip-bot .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize)),
    var(--hf-bdrSize)  calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}

 .hf-v.hf2-angle.hf2-detached .hf-card-header {
  padding-top: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf-angle.hf-detached .hf-card-footer {
  padding-bottom: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf2-angle.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: var(--hf-point);
}
 .hf-v.hf-angle.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: var(--hf-point);
}
 .hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 div,
 .hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% 100%,
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
  );
}
 .hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr1 div,
 .hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr1 div {
  top: auto;
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-angle-alt.hf2-ext .hf-top .hf-gfx-bdr div,
 .hf-v.hf-angle-alt.hf-ext .hf-bottom .hf-gfx-bdr div {
  right: -0.5px;
  width: auto;
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize) ),
    0 calc(100% - var(--hf-lyrSize)*2)
    );
}
 .hf-v.hf2-angle-alt.hf2-ext .hf-top .hf-gfx-bg div,
 .hf-v.hf-angle-alt.hf-ext .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    var(--hf-bdrSize) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize))
    );
}
 .hf-v.hf2-angle-alt.hf2-flip-top .hf-top .hf-gfx-lyr2 div {
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 100%
  );
}
 .hf-v.hf2-angle-alt.hf2-flip-top .hf-top .hf-gfx-lyr1 div {
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-angle-alt.hf2-ext.hf2-flip-top .hf-top .hf-gfx-bdr div{
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-lyrSize)*2),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize) )
    );
}
 .hf-v.hf2-angle-alt.hf2-ext.hf2-flip-top .hf-top .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize)),
    var(--hf-bdrSize)  calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf-angle-alt.hf-flip-bot .hf-bottom .hf-gfx-lyr2 div {
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-point) - var(--hf-lyrSize)),
    0 100%
  );
}
 .hf-v.hf-angle-alt.hf-flip-bot .hf-bottom .hf-gfx-lyr1 div {
  clip-path: polygon(
    0 var(--hf-bdrSize),
    100% var(--hf-bdrSize),
    100% calc(100% - var(--hf-lyrSize)),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf-angle-alt.hf-ext.hf-flip-bot .hf-bottom .hf-gfx-bdr div{
  clip-path: polygon(
    0 calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    100% calc(100% - var(--hf-lyrSize)*2),
    0 calc(100% - var(--hf-point) - var(--hf-lyrSize) )
    );
}
 .hf-v.hf-angle-alt.hf-ext.hf-flip-bot .hf-bottom .hf-gfx-bg div {
  clip-path: polygon(
    var(--hf-bdrSize) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-point2x) - var(--hf-lyrSize)*2),
    calc(100% - var(--hf-bdrSize)) calc(100% - var(--hf-lyrSize)*2 - var(--hf-bdrSize)),
    var(--hf-bdrSize)  calc(100% - var(--hf-point) - var(--hf-lyrSize))
    );
}
 .hf-v.hf2-angle-alt.hf2-detached .hf-card-header {
  padding-top: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf-angle-alt.hf-detached .hf-card-footer {
  padding-bottom: calc(var(--hf-lyrSize)*2);
}
 .hf-v.hf2-angle-alt.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-top: var(--hf-point);
}
 .hf-v.hf-angle-alt.hf-detached:not(.hf-no-content)  .hf-card-footer {
  padding-bottom: var(--hf-point);
}
 .hf-v:not(.hf2-ext) .hf-top .hf-gfx-bdr div,
 .hf-v:not(.hf-ext) .hf-bottom .hf-gfx-bdr div,
 .hf-v:not(.hf2-ext) .hf-top .hf-gfx-bg div,
 .hf-v:not(.hf-ext) .hf-bottom .hf-gfx-bg div {
  display: none;
}
/* .hf-v.hf2-none .hf-card-header,
.hf-v.hf-none .hf-card-footer, */
.hf-v.hf2-none .hf-top,
.hf-v.hf-none .hf-bottom {
  display: none;
}
.hf-v.hf2-none .hf-card-header,
.hf-v.hf-none .hf-card-footer {
  min-height: 0;
}
 .hf-v.hf2-none .hf-card-content-inner {
  border-top-width: var(--hf-bdrSize);
  border-top-right-radius: var(--hf-border-radius);
  border-top-left-radius: var(--hf-border-radius);
}
 .hf-v.hf-none .hf-card-content-inner {
  border-bottom-width: var(--hf-bdrSize);
  border-bottom-right-radius: var(--hf-border-radius);
  border-bottom-left-radius: var(--hf-border-radius);
  min-height: calc(var(--hf-point2x) + var(--hf-lyrSize)*2);
}
.hf-v[data-lyr-offset="0"]:not(.hf2-ext):not(.hf2-none) .hf-card-content-inner {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.hf-v[data-lyr-offset="0"]:not(.hf-ext):not(.hf-none) .hf-card-content-inner {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
 .hf-v.hf2-none .hf-card-content-inner > .hf-grad,
 .hf-v.hf-none .hf-card-content-inner > .hf-grad {
  min-height: calc(var(--hf-point2x) + var(--hf-lyrSize)*2);
}
 .hf-v.hf-animate {
   opacity: 0;
   transition: opacity 900ms ease;
 }
 .hf-v.hf-animate.hf-out-view {
   opacity: 0;
 }
 .hf-v.hf-animate.hf-in-view {
   opacity: 1;
 }
 .hf-v.hf-animate .hf-gfx-lyr1 {
  transform: translate(0,calc(var(--hf-lyrSize)*-1));
  transition: transform 900ms ease;
}
 .hf-v.hf-animate .hf-gfx-lyr2 {
  transform: translate(0,calc(var(--hf-lyrSize)*-2));
  transition: transform 900ms ease;
}
 .hf-v.hf-animate.hf-out-view .hf-gfx-lyr1 {
  transform: translate(0,calc(var(--hf-lyrSize)*-1));
}
 .hf-v.hf-animate.hf-out-view .hf-gfx-lyr2 {
  transform: translate(0,calc(var(--hf-lyrSize)*-2));
}
 .hf-v.hf-animate.hf2-no-point.hf-out-view .hf-top .hf-gfx-lyr1,
 .hf-v.hf-animate.hf2-no-point .hf-top .hf-gfx-lyr1 {
  transform: translate(0,var(--hf-lyrSize));
}
 .hf-v.hf-animate.hf2-no-point.hf-out-view .hf-top .hf-gfx-lyr2,
 .hf-v.hf-animate.hf2-no-point .hf-top .hf-gfx-lyr2 {
  transform: translate(0,calc(var(--hf-lyrSize)*2));
}
 .hf-v.hf-animate.hf2-no-point.hf-in-view .hf-top .hf-gfx-lyr1,
 .hf-v.hf-animate.hf-in-view .hf-gfx-lyr1 {
  transform: translate(0,0);
}
 .hf-v.hf-animate.hf2-no-point.hf-in-view  .hf-top .hf-gfx-lyr2,
 .hf-v.hf-animate.hf-in-view .hf-gfx-lyr2 {
  transform: translate(0,0);
}



.launchpad-wrapper{position:relative;display:inline-block;z-index:1}.launchpad,.satellite,.tierahs,.tierahs-link{background-color:transparent;border:none;border-radius:50%;aspect-ratio:1/1;text-align:center;padding:0;margin:0;transition:all 300ms ease-out;display:inline-grid;justify-content:center;align-content:center;cursor:pointer}.launchpad:hover,.satellite:hover,.tierahs:hover,.tierahs-link:hover{background-color:transparent}.launchpad:active,.launchpad.launched:active,.satellite:active,.satellite.launched:active,.tierahs:active,.tierahs.launched:active,.tierahs-link:active,.tierahs-link.launched:active{scale:0.95}.launchpad svg,.satellite svg,.tierahs svg,.tierahs-link svg{width:100%;height:auto}button.satellite,button.tierahs{-webkit-appearance:none;appearance:none}.satellite{position:absolute;top:50%;left:50%;translate:-50% -50%;z-index:-1;scale:0.5}.satellite.launched{scale:1}
.today_wrapper{margin:0 auto;padding:0;position:relative;overflow:visible;text-align:center}.today_wrapper .desk_board{position:relative}.today_wrapper a{text-decoration:none;display:block;width:100%}.today_wrapper .serif{font-family:serif}.today_wrapper .sansserif{font-family:sans-serif}.today_wrapper .today_inner{margin:0 auto;padding:0;position:relative;overflow:visible;text-align:center;background-color:#fff}.today_wrapper .today_month,.today_wrapper .today_month a,.today_wrapper .today_month a:hover{color:#ffffff}.today_wrapper .today_month{vertical-align:center;position:relative;border-style:solid;font-weight:bold;text-shadow:rgba(0,0,0,0.3) -1px 0,rgba(0,0,0,0.3) 0 -1px,rgba(255,255,255,0.3) 0 1px,rgba(0,0,0,0.3) -1px -2px}.today_wrapper .today_day,.today_wrapper .today_day a,.today_wrapper .today_day a:hover{color:#333}.today_wrapper .today_day{margin:0;vertical-align:center;position:relative;border-color:#fff;border-style:solid;font-weight:bold;text-shadow:rgba(0,0,0,0.5) -1px 0,rgba(0,0,0,0.3) 0 -1px,rgba(255,255,255,0.5) 0 1px,rgba(0,0,0,0.3) -1px -2px;background-color:#fff}.today_wrapper .flat .today_day,.today_wrapper .flat .today_month{box-shadow:none !important;border-style:none !important;text-shadow:none !important}.today_wrapper.align-right .square,.today_wrapper.align-right .rounded,.today_wrapper.align-right .desk_board{margin-right:0 !important}.today_wrapper.align-left .square,.today_wrapper.align-left .rounded,.today_wrapper.align-left .desk_board{margin-left:0 !important}.today_wrapper.xsmall .today_month{height:15px;line-height:15px;font-size:12px;border-width:1px;border-bottom-width:2px;text-shadow:none}.today_wrapper.xsmall .today_day{height:46px;line-height:46px;font-size:35px;border-width:1px;text-shadow:rgba(0,0,0,0.5) -1px 0,rgba(0,0,0,0.3) 0 -1px,rgba(255,255,255,0.5) 0 1px,rgba(0,0,0,0.3) -1px -1px;box-shadow:inset 0px 1px 5px #cccccc}.today_wrapper.xsmall .rounded .today_month{border-top-left-radius:12px;border-top-right-radius:12px}.today_wrapper.xsmall .rounded .today_day{border-bottom-left-radius:12px;border-bottom-right-radius:12px}.today_wrapper.xsmall .square,.today_wrapper.xsmall .rounded,.today_wrapper.xsmall .desk_board{width:64px;margin:3px auto;box-shadow:1px 1px 3px #000}.today_wrapper.xsmall .rounded{border-radius:12px !important}.today_wrapper.xsmall .desk_board{padding:5px;border-radius:3px}.today_wrapper.small .today_month{height:24px;line-height:24px;font-size:15px;border-width:1px;border-bottom-width:2px;text-shadow:none}.today_wrapper.small .today_day{height:70px;line-height:70px;font-size:60px;border-width:1px;text-shadow:rgba(0,0,0,0.5) -1px 0,rgba(0,0,0,0.3) 0 -1px,rgba(255,255,255,0.5) 0 1px,rgba(0,0,0,0.3) -1px -1px;box-shadow:inset 0px 2px 7px #cccccc}.today_wrapper.small .rounded{margin:4px auto;border-radius:20px;box-shadow:1px 1px 4px #000}.today_wrapper.small .rounded .today_month{border-top-left-radius:20px;border-top-right-radius:20px}.today_wrapper.small .rounded .today_day{border-bottom-left-radius:20px;border-bottom-right-radius:20px}.today_wrapper.small .square,.today_wrapper.small .rounded,.today_wrapper.small .desk_board{width:96px;margin:4px auto;box-shadow:1px 1px 4px #000}.today_wrapper.small .rounded{border-radius:20px !important}.today_wrapper.small .desk_board{padding:7px;border-radius:3px}.today_wrapper.medium .today_month{height:30px;line-height:30px;font-size:18px;border-width:1px;border-bottom-width:3px}.today_wrapper.medium .today_day{height:95px;line-height:95px;font-size:80px;border-width:1px;box-shadow:inset 0px 3px 10px #cccccc}.today_wrapper.medium .rounded .today_month{border-top-left-radius:25px;border-top-right-radius:25px}.today_wrapper.medium .rounded .today_day{border-bottom-left-radius:25px;border-bottom-right-radius:25px}.today_wrapper.medium .square,.today_wrapper.medium .rounded,.today_wrapper.medium .desk_board{width:128px;margin:5px auto;box-shadow:1px 1px 5px #000}.today_wrapper.medium .rounded{border-radius:25px !important}.today_wrapper.medium .desk_board{padding:10px;border-radius:3px}.today_wrapper.large .today_month{height:45px;line-height:45px;font-size:30px;border-width:2px;border-bottom-width:4px}.today_wrapper.large .today_day{height:140px;line-height:140px;font-size:120px;border-width:2px;box-shadow:inset 0px 4px 15px #cccccc}.today_wrapper.large .rounded .today_month{border-top-left-radius:40px;border-top-right-radius:40px}.today_wrapper.large .rounded .today_day{border-bottom-left-radius:40px;border-bottom-right-radius:40px}.today_wrapper.large .square,.today_wrapper.large .rounded,.today_wrapper.large .desk_board{width:192px;margin:8px auto;box-shadow:2px 2px 8px #000}.today_wrapper.large .rounded{border-radius:40px !important}.today_wrapper.large .desk_board{padding:12px;border-radius:5px}.today_wrapper.xlarge .today_month{height:60px;line-height:60px;font-size:40px;border-width:2px;border-bottom-width:4px}.today_wrapper.xlarge .today_day{height:186px;line-height:186px;font-size:165px;border-width:2px;box-shadow:inset 0px 5px 20px #cccccc}.today_wrapper.xlarge .rounded .today_month{border-top-left-radius:50px;border-top-right-radius:50px}.today_wrapper.xlarge .rounded .today_day{border-bottom-left-radius:50px;border-bottom-right-radius:50px}.today_wrapper.xlarge .square,.today_wrapper.xlarge .rounded,.today_wrapper.xlarge .desk_board{width:256px;margin:10px auto;box-shadow:2px 2px 10px #000}.today_wrapper.xlarge .rounded{border-radius:50px !important}.today_wrapper.xlarge .desk_board{padding:15px;border-radius:5px}


.com_bigwhiteduck_stacks_paragraphpro_stack p.text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-left{text-align:left}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-right{text-align:right}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify{text-align:justify}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-inherit{text-align:inherit}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center + ul{display:table;margin:0 auto;text-align:left}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify.small-only-just-left{text-align:left !important}}

.launchpad-wrapper{position:relative;display:inline-block;z-index:1}.launchpad,.satellite,.tierahs,.tierahs-link{background-color:transparent;border:none;border-radius:50%;aspect-ratio:1/1;text-align:center;padding:0;margin:0;transition:all 300ms ease-out;display:inline-grid;justify-content:center;align-content:center;cursor:pointer}.launchpad:hover,.satellite:hover,.tierahs:hover,.tierahs-link:hover{background-color:transparent}.launchpad:active,.launchpad.launched:active,.satellite:active,.satellite.launched:active,.tierahs:active,.tierahs.launched:active,.tierahs-link:active,.tierahs-link.launched:active{scale:0.95}.launchpad svg,.satellite svg,.tierahs svg,.tierahs-link svg{width:100%;height:auto}button.satellite,button.tierahs{-webkit-appearance:none;appearance:none}.satellite{position:absolute;top:50%;left:50%;translate:-50% -50%;z-index:-1;scale:0.5}.satellite.launched{scale:1}


aside{background-color:var(--dark-gray) ;}
.full-height{height:100vh ;}  
.quarter-height{height:25vh ;}  
.menu{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(34, 34, 34, 1.00);--link-color:rgba(224, 238, 255, 1.00);--link-color-hover:rgba(249, 0, 51, 1.00);--link-decoration:none;--link-decoration-hover:underline}
.BlueBorder{border-color:rgba(0, 0, 255, 1.00) ;border-width:8px ;border-style:solid ;border-radius:10px 10px 10px 10px ;}
.BlueBackground{background-color:rgba(0, 0, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.BlueBackground{background-attachment:scroll!important}}
.BlueBackground{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 140, 186, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}
.Dropdown{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
   h2,.h2, h3,.h3,        .BlueBackground{font-size:calc(16rem/16) ;font-weight:800 ;}@media only screen and (min-width:40em) {   h2,.h2, h3,.h3,        .BlueBackground{font-size:calc(16rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {   h2,.h2, h3,.h3,        .BlueBackground{font-size:calc(16rem/16) ;line-height:1.50 }}
.BlueBackground{padding-top:0.00px ;padding-right:0.00px ;padding-bottom:0.00px ;padding-left:0.00px ;}@media only screen and (min-width:40em){.BlueBackground{padding-top:0.00px ;padding-right:0.00px ;padding-bottom:0.00px ;padding-left:0.00px }}@media only screen and (min-width:64em){.BlueBackground{padding-top:5.00px ;padding-right:5.00px ;padding-bottom:5.00px ;padding-left:5.00px }}
.OverlayBG{position:relative;z-index:0}.OverlayBG:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;opacity:0.58 ;background-color:rgba(0, 0, 0, 1.00) ;}
.header{background-image:url('http://wisconsin.com/WebImages/WisconsinHeader.jpg') ;background-repeat:no-repeat    ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ; background-size: contain  ; }@media (hover:none) and (pointer:coarse){.header{background-attachment:scroll!important}}
.Dropdown{background-color:rgba(0, 0, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.Dropdown{background-attachment:scroll!important}}
 .Dropdown>.menu a, .menu.Dropdown a{--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(255, 255, 255, 0.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-border-accent:2px solid var(--menu-link-color)} .Dropdown>.menu .menu-text, .menu.Dropdown .menu-text{--menu-text-color:rgba(255, 255, 255, 1.00)} .Dropdown>.menu>li>a, .menu.Dropdown>li>a{padding-top:1rem;padding-bottom:1rem} .Dropdown>.menu .submenu>li>a, .menu.Dropdown .submenu>li>a{padding-top:0.75rem;padding-bottom:0.75rem} .Dropdown>.menu li.active>a, .Dropdown>.menu li.is-active>a, .Dropdown>.menu a.is-active, .menu.Dropdown li.active>a, .menu.Dropdown li.is-active>a, .menu.Dropdown a.is-active{--menu-bg-color:rgba(0, 0, 255, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)} .Dropdown>.menu .submenu li.active>a, .Dropdown>.menu .submenu li.is-active>a, .Dropdown>.menu .submenu a.is-active, .menu.Dropdown .submenu li.active>a, .menu.Dropdown .submenu li.is-active>a, .menu.Dropdown .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00)} .Dropdown>.menu .submenu a, .menu.Dropdown .submenu a{--menu-caret-color:rgba(255, 255, 255, 1.00)} .Dropdown>.menu .submenu, .menu.Dropdown .submenu{--submenu-bg-color:rgba(254, 254, 254, 1.00);--submenu-border:1px solid rgba(202, 202, 202, 1.00)} .Dropdown>.menu .submenu a, .menu.Dropdown .submenu a{--menu-bg-color:transparent;--menu-link-color:rgba(255, 255, 255, 1.00);--menu-link-color-hover:rgba(255, 255, 255, 1.00)} .Dropdown>.menu .submenu .menu-text, .menu.Dropdown .submenu .menu-text{--menu-text-color:rgba(255, 255, 255, 1.00)} .Dropdown>.menu .submenu li.active>a, .Dropdown>.menu .submenu li.is-active>a, .Dropdown>.menu .submenu a.is-active, .menu.Dropdown .submenu li.active>a, .menu.Dropdown .submenu li.is-active>a, .menu.Dropdown .submenu a.is-active{--menu-caret-color:rgba(255, 255, 255, 1.00);--menu-bg-color:rgba(0, 0, 255, 1.00);--menu-link-color:rgba(254, 254, 254, 1.00);--menu-link-color-hover:rgba(254, 254, 254, 1.00)}
.Breadcrumbs{--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(251, 2, 7, 1.00);--link-decoration:none;--link-decoration-hover:none}
.Breadcrumbs{background-color:rgba(0, 0, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.Breadcrumbs{background-attachment:scroll!important}}
.Buttons{border-radius:10px ;}
.WhiteTopBottom{border-color:rgba(255, 255, 255, 1.00) ;border-width:2px 0px 2px 0px ;border-style:solid ;}
.WhiteTop{border-color:rgba(255, 255, 255, 1.00) ;border-width:2px 0px 0px 0px ;border-style:solid ;}
            .mytime{font-size:calc(16rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) {            .mytime{font-size:calc(16rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {            .mytime{font-size:calc(16rem/16) ;line-height:1.50 }}
.TimeButton{border-radius:10px 10px 10px 10px ;}
.BottomPaddingTop{padding-top:0.5rem ;}  
.BottomMarginTop{margin-top:0.5rem ;}  
   h2,.h2,         .HeaderH2{font-size:calc(16rem/16) ;}@media only screen and (min-width:40em) {   h2,.h2,         .HeaderH2{font-size:calc(36rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {   h2,.h2,         .HeaderH2{font-size:calc(36rem/16) ;line-height:1.50 }}
.HeaderH2{background-color:rgba(0, 0, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.HeaderH2{background-attachment:scroll!important}}
.HeaderH2{color:rgba(255, 255, 255, 1.00) ;}
.HeaderH3{background-color:rgba(0, 0, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.HeaderH3{background-attachment:scroll!important}}
    h3,.h3,        .HeaderH3{font-size:calc(16rem/16) ;}@media only screen and (min-width:40em) {    h3,.h3,        .HeaderH3{font-size:calc(24rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {    h3,.h3,        .HeaderH3{font-size:calc(24rem/16) ;line-height:1.50 }}
.HeaderH3{color:rgba(255, 255, 255, 1.00) ;}
.Website{border-color:rgba(0, 0, 0, 1.00) ;border-width:4px ;border-style:solid ;}
.Websites{padding:0.25rem ;}  
.Website{margin-top:0 ;margin-right:0 ;margin-bottom:0.25rem ;margin-left:0 ;}  
.Website{padding:0.25rem ;}  
       h6,.h6,     .BottomHeader{font-size:calc(16rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) {       h6,.h6,     .BottomHeader{font-size:calc(16rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {       h6,.h6,     .BottomHeader{font-size:calc(16rem/16) ;line-height:1.50 }}
.BottomHeader{margin-left:0.5rem ;}  
.ColumnMoveRight{margin-left:0.5rem ;}  
.MarginTop{margin-top:0.5rem ;}  
.InfoParagraph{padding-right:0.5rem ;padding-left:0.5rem ;}  
 p,.p,           .InfoParagraph{font-size:calc(16rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) { p,.p,           .InfoParagraph{font-size:calc(16rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) { p,.p,           .InfoParagraph{font-size:calc(16rem/16) ;line-height:1.50 }}
.AquaBackground{background-color:rgba(15, 128, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.AquaBackground{background-attachment:scroll!important}}
.RestaurantIcon{background-color:rgba(0, 0, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.RestaurantIcon{background-attachment:scroll!important}}
.RestaurantIcon{border-radius:10px 10px 10px 10px ;}
.RestaurantIcon{margin-right:0.25rem ;margin-left:0.25rem ;}  
.RestaurantIcon{padding-top:0.25rem ;padding-right:0.25rem ;padding-bottom:0.25rem ;padding-left:0.25rem ;}  
.RestaurantIcon{height:8rem ;}  
.RestaurantIcon{width:8rem ;}  
.BusinessBottomMargin{margin-bottom:0.75rem ;}  
.WhiteFont{color:rgba(255, 255, 255, 1.00) ;}
.ColumnMargin{margin-right:0.5rem ;margin-bottom:0.5rem ;margin-left:0.5rem ;}  
.stacks_in_1437_55 table thead,table thead{}.stacks_in_1437_55 table thead tr:nth-child(even),table thead tr:nth-child(even){}.stacks_in_1437_55 table tbody,table tbody{}.stacks_in_1437_55 table tbody tr:nth-child(even),table tbody tr:nth-child(even){}.stacks_in_1437_55 table th,table th{}.stacks_in_1437_55 table td,table td{border-style:solid;border-color:rgba(34, 34, 34, 1.00) ;border-width:1px 1px 1px 1px  ;}
.Communities{padding-top:0 ;padding-bottom:0 ;}  
.FullDate{background-color:rgba(0, 0, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.FullDate{background-attachment:scroll!important}}
.FullDate{color:rgba(255, 255, 255, 1.00) ;}
.FullDate{border-radius:10px 10px 10px 10px ;}
.FullDate{margin-top:0 ;margin-right:0 ;margin-bottom:0.25rem ;margin-left:0 ;}  
.TimeButton{padding-top:0.0625rem ;padding-right:0.0625rem ;padding-bottom:0.0625rem ;padding-left:0.0625rem ;}  
 p,.p,           .button,.TimeButton{font-size:calc(30rem/16) ;font-weight:800 ;}@media only screen and (min-width:40em) { p,.p,           .button,.TimeButton{font-size:calc(30rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) { p,.p,           .button,.TimeButton{font-size:calc(30rem/16) ;line-height:1.50 }}
.TimeButton{margin-top:0 ;margin-right:0 ;margin-bottom:0 ;margin-left:0 ;}  
 p,.p,           .LargeButton{font-size:calc(16rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em) { p,.p,           .LargeButton{font-size:calc(16rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) { p,.p,           .LargeButton{font-size:calc(16rem/16) ;line-height:1.50 }}
.TopHeader{margin-top:0 ;margin-right:0 ;margin-bottom:0.5rem ;margin-left:0 ;}  
.Divider{color:rgba(0, 0, 255, 1.00) ;}
.Team{border-color:rgba(0, 0, 255, 1.00) ;border-top-width:10px ;border-top-style:solid ;}
.TeamBackground{background-color:rgba(0, 0, 0, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.TeamBackground{background-attachment:scroll!important}}
.BottomAdHeader{margin-top:0 ;margin-right:0 ;margin-bottom:0.5rem ;margin-left:0 ;}  
.Header5{color:rgba(255, 255, 255, 1.00) ;}
.Header5{background-color:rgba(0, 0, 255, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.Header5{background-attachment:scroll!important}}
      h5,.h5,      .Header5{font-size:calc(14rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) {      h5,.h5,      .Header5{font-size:calc(14rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {      h5,.h5,      .Header5{font-size:calc(14rem/16) ;line-height:1.50 }}
.Header5{padding-left:0.75rem ;}  
.Listify{margin-top:0 ;margin-right:0 ;margin-bottom:0 ;margin-left:0 ;}  
.Listify{padding-top:0 ;padding-right:0 ;padding-bottom:0 ;padding-left:0 ;}  
.Header4{background-color:rgba(251, 2, 7, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.Header4{background-attachment:scroll!important}}
.Header4{color:rgba(255, 255, 255, 1.00) ;}
     h4,.h4,       .Header4{font-size:calc(18rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) {     h4,.h4,       .Header4{font-size:calc(18rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {     h4,.h4,       .Header4{font-size:calc(18rem/16) ;line-height:1.50 }}
.TopBorder{border-color:rgba(0, 0, 255, 1.00) ;border-top-width:8px ;border-top-style:solid ;}
.AlphaMargin{margin-bottom:0.5rem ;}  
.ADmargin{margin-top:0.5rem ;}  
.MarksNote{color:rgba(0, 0, 255, 1.00) ;}
      h5,.h5,      .MarksNote{font-size:calc(18rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) {      h5,.h5,      .MarksNote{font-size:calc(20rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) {      h5,.h5,      .MarksNote{font-size:calc(20rem/16) ;line-height:1.50 }}
.MarksNote{padding-left:2rem ;}  
.MarksNoteMargin{margin-right:0.75rem ;margin-left:0.75rem ;}  
.CountyDirectories{margin-bottom:0.5rem ;}  
.WebsiteFeatured{border-color:rgba(251, 2, 7, 1.00) ;border-width:6px ;border-style:solid ;}
.WebsiteFeatured{margin-right:0.25rem ;margin-bottom:0.25rem ;margin-left:0.25rem ;}  
.WebsiteFeatured{padding:0.25rem ;}  
.FeaturedWebsite{margin-bottom:0.5rem ;}  
.TravelMargin{margin-top:0.5rem ;margin-right:1.5rem ;margin-bottom:0.5rem ;margin-left:1.5rem ;}  
.MainGutter{--small-gutter:0.75rem;--medium-gutter:0.75rem;--large-gutter:0.75rem;}
.SpecialWhiteBorder{border-color:rgba(255, 255, 255, 1.00) ;border-width:6px ;border-style:dotted ;border-radius:10px 10px 10px 10px ;}
.BottomMargin{margin-bottom:0.5rem ;}  
:root{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(254, 254, 254, 1.00);--white-color:var(--white);--primary:rgba(0, 0, 255, 1.00);--secondary:rgba(231, 231, 231, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(240, 138, 36, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(51, 51, 51, 1.00);--success-contrast:rgba(254, 254, 254, 1.00);--warning-contrast:rgba(254, 254, 254, 1.00);--alert-contrast:rgba(254, 254, 254, 1.00);--primary-dark:rgba(0, 0, 225, 1.00);--secondary-dark:rgba(201, 201, 201, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(210, 108, 6, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(34, 34, 34, 1.00);--link-color:rgba(0, 0, 255, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--selection-background:var(--primary);--selection-text:var(--primary-contrast);--link-decoration:none;--link-decoration-hover:none;--overlay-color:rgba(0, 0, 0, 0.50);--radius:3px;--small-gutter:1.25rem;--medium-gutter:2rem;--large-gutter:2rem;--site-width:calc(1200rem/16);}::selection{background:var(--selection-background);color:var(--selection-text)}.alt{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(230, 230, 230, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(0, 0, 255, 1.00);--link-color-hover:rgba(0, 102, 136, 1.00);--link-decoration:none;--link-decoration-hover:none}.grid-container{max-width:var(--site-width)}.radius{border-radius:var(--radius)}body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(24rem/16)}h2,.h2{font-size:calc(20rem/16)}h3,.h3{font-size:calc(19rem/16)}h4,.h4{font-size:calc(18rem/16)}h5,.h5{font-size:calc(17rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:40%}.button{font-size:calc(16rem/16)}.button.tiny{font-size:calc(10rem/16)}.button.small{font-size:calc(12rem/16)}.button.large{font-size:calc(20rem/16)}@media only screen and (min-width:40em){body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}@media only screen and (min-width:64em){body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(25rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}a{color:var(--link-color);-webkit-text-decoration:var(--link-decoration);text-decoration:var(--link-decoration)}a:hover,a:focus{color:var(--link-color-hover);-webkit-text-decoration:var(--link-decoration-hover);text-decoration:var(--link-decoration-hover)}.menu a{color:var(--menu-link-color);background:var(--menu-bg-color)}.menu a:hover{color:var(--menu-link-color-hover)}h1,h2,h3,h4,h5,h6{color:var(--header-color)}small{color:var(--small-color)}.subheader{color:var(--subheader-color)}.text ul,.text ol{list-style-position:outside}.text>ul,.text>ol,.text .mez>div>ul,.text .mez>div>ol{margin-left:1.25rem}.text ul{list-style-type:disc}.text ul ul,.text ol ul{list-style-type:circle}.text ol{list-style-type:decimal}.text ol ol,.text ul ol{list-style-type:lower-alpha}.radius,.radius:before,.radius:after{border-radius:calc(3rem/16)}body{background-color:rgba(255, 255, 255, 1.00);}
/*!* Font Awesome Pro 5.14.0 by @fontawesome - https://fontawesome.com* License - https://fontawesome.com/license (Commercial License)*/@font-face{font-family:'Font Awesome 5 Brands';font-style:normal;font-weight:400;font-display:block;src:url("../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.eot");src:url("../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),url("../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.woff2") format("woff2"),url("../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.woff") format("woff"),url("../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.ttf") format("truetype"),url("../rw_common/plugins/stacks/fa5-fonts/fa-brands-400.svg#fontawesome") format("svg")}.fab{font-family:'Font Awesome 5 Brands';font-weight:400}@font-face{font-family:'Font Awesome 5 Pro';font-style:normal;font-weight:400;font-display:block;src:url("../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.eot");src:url("../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"),url("../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.woff2") format("woff2"),url("../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.woff") format("woff"),url("../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.ttf") format("truetype"),url("../rw_common/plugins/stacks/fa5-fonts/fa-regular-400.svg#fontawesome") format("svg")}.far{font-family:'Font Awesome 5 Pro';font-weight:400}@font-face{font-family:'Font Awesome 5 Pro';font-style:normal;font-weight:900;font-display:block;src:url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.eot");src:url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.woff2") format("woff2"),url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.woff") format("woff"),url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.ttf") format("truetype"),url("../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.svg#fontawesome") format("svg")}.fa,.fas{font-family:'Font Awesome 5 Pro';font-weight:900}  
 p,.p,           .myclass{font-size:calc(16rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em) { p,.p,           .myclass{font-size:calc(16rem/16) ;line-height:1.50 }}@media only screen and (min-width:64em) { p,.p,           .myclass{font-size:calc(16rem/16) ;line-height:1.50 }}
.stacks_in_1241_11 img{width:100%;max-width:40px}
/* -- EACH CSS Template -- */
/*  Hype elements with CUSTOM CSS */
#stacks_in_1923 .HYPE_document  { 
	text-align: center; display: block; width: 100%; height: 100%; margin: auto; padding: 0; min-width: 100%;  
	 
}
/*  buttons states toolbar */
#stacks_in_1923 .button-stats:hover, .button-stats:hover {  color: #dcdcdc !important;	background-color: #262626 !important;  }
/* LINK AREA over the titles */
#stacks_in_1923 .wrapper_link  {  
	display: none !important;	position: absolute;	padding: 0; top: 0; right: 0; left: 0; bottom: 0; margin: auto;	z-index: 2;	border-radius: 100px; -webkit-border-radius: 100px; -moz-border-radius: 100px;
	min-height: 100px !important; max-height: 200px !important;	width: auto; max-width: 75vw;   }
#stacks_in_1923 .back_wrapper_8573 { 		
	text-align: center;	margin-right: auto; margin-left: auto; display: block; position: relative; max-width: 1300vh;	
	 height: 35vh; min-height: 200px !important; 		
	 padding: 0;		
	%%[[if edit]]%% display:none;  	
%%[[endif]]%% }
/* fixed height setting */
@media (max-width: 800px) { #stacks_in_1923 .back_wrapper_8573 { 
  } }
@media (max-width: 600px) { #stacks_in_1923 .back_wrapper_8573 { 
  } }

#stacks_in_1923 .wrapper_8573 { 
	text-align: center; margin-right: auto; margin-left: auto; display: block; position: relative;	max-width: 1300px;		
	 height: 35vh; min-height: 200px !important; 		
	  
	 }
/* fixed height setting */
@media (max-width: 800px) { #stacks_in_1923 .wrapper_8573 { 
  } }
@media (max-width: 600px) { #stacks_in_1923 .wrapper_8573 { 
  } }

/*  Hype internal elements - rotation */
#stacks_in_1923 .flex_elements{  	transform: rotate( 0deg ) !important; 	-webkit-transform: rotate(0deg ) !important; 	-moz-transform: rotate( 0deg ) !important;   }
/* --------------- */
#stacks_in_1923 .wrapper_working_area  {  
	background: url(../TravelWhatToDoCommunity_files/edit_mode_titles_guide_border.gif) center center no-repeat !important;
	max-width: 1300px;
	height: 35vh;
	background-size: contain !important; -webkit-background-size: contain !important; -moz-background-size: contain !important;
	border-radius: 6px; -webkit-border-radius: 6px; -moz-border-radius: 6px;
	opacity: 0.65;	
	display: none !important;
	position: absolute;
	width: 100%; height: 100%;
	top: 0; bottom: 0; right: 0; left: 0;
	margin-right: auto; margin-left: auto; text-align: center;		
	
	  
	
}


/* ---TITLE active only with "STATIC" titles */
.hype-title-static {	   }
.hype-title-scale{		


 %%[[if !edit]]%%  
}

@keyframes hype-title-scale { 
0% {transform: scale(0.8); opacity: 0;}
40% {transform: scale(0.8);}
45% {opacity: 0;}      
100% {transform: scale(1); opacity: 1;}
}
@-webkit-keyframes hype-title-scale {
0% {-webkit-transform: scale(0.8); opacity: 0;}
40% {-webkit-transform: scale(0.8);} 
45% {opacity: 0;}      
100% {-webkit-transform: scale(1); opacity: 1;}
}
.hype-title-fade {		

 
  }

@keyframes hype-title-fade {
0% {opacity: 0;}   
10% {opacity: 0;} 
100% {opacity: 1;}
}
@-webkit-keyframes hype-title-fade {
0% { opacity: 0;} 
10% {opacity: 0;}   
100% {opacity: 1;}
}

 /*  A */
#stacks_in_1923 .theme_title {  color: #0000FF !important;  }
 /*  B */
#stacks_in_1923 .theme_title_b {  color: #0F80FF !important;  }
/* Tit A-B styles  */
#stacks_in_1923 .theme_slogan { 
	color: #FFFFFF !important; font-size: 54px !important; font-family: "montserratbold", sans-serif !important; font-style: none; text-transform: none; text-decoration: none;	transform: rotate( 0deg ) !important; -webkit-transform: rotate( 0deg ) !important; -moz-transform: rotate( 0deg ) !important;	margin-top: 20px !important; margin-left: 0px !important; display: block !important; letter-spacing: 0px !important; line-height: 70px !important;   
}

/* TITLE CSS */
#stacks_in_1923 .theme_title, #stacks_in_1923 .theme_title_b { 
	font-size: 130px !important; font-style: none; 	text-transform: none;text-decoration: None; 	margin-top: 0px !important; margin-left: 0px !important; letter-spacing: 0px !important; line-height: 125px !important;	font-family: "archivo_blackregular", sans-serif !important; -webkit-transform: translate3d(0,0,0) !important;
	
	 
	
	 	
	
	 	
	
	 
	
	  
}

/* upg 1.1.3 - 113 */
#stacks_in_1923 .theme_title, #stacks_in_1923 .theme_title_b  {    }

/* back_wrapper- fix consolidation. stay under text */
#stacks_in_1923 .back_wrapper_8573 {	 
	
/* upg 1.1.4 - 114 */
	
/* beta  */
/*	*/


 
 
}
#stacks_in_1923 .back_wrapper_8573bg { 	
	
		background-position: 50% 50% !important;	
		background-size: cover !important;
	  
		background: url(http://wisconsin.com/WebImages/AdvertisingImageHeader.JPG);
	   		
			
	text-align: center; display: block; position: relative;	
	max-width: 1300vh;		
	 height: 35vh; min-height: 200px !important; 		
		
	padding: 0; margin: 0;  
		
}

/* fixed position in desktop only */
@media (max-width: 480px) { #stacks_in_1923 .back_wrapper_8573bg { background-attachment: scroll !important; } }
@media (min-width: 481px) and (max-width: 1024px) { #stacks_in_1923 .back_wrapper_8573bg {  background-attachment: scroll !important; } }
@media (min-width: 1025px) {  }
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) { #stacks_in_1923 .back_wrapper_8573bg { background-attachment: scroll !important;  } }
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) { #stacks_in_1923 .back_wrapper_8573bg { background-attachment: scroll !important;  } }
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) { #stacks_in_1923 .back_wrapper_8573bg#stacks_in_1923 .back_wrapper_8573bg {  background-attachment: scroll !important;  } }

/* fixed height setting */
@media (max-width: 800px) { #stacks_in_1923 .back_wrapper_8573bg {    } }
@media (max-width: 600px) { #stacks_in_1923 .back_wrapper_8573bg {    } }

#stacks_in_1923 .theme_title, #stacks_in_1923 .theme_title_b {
 
 
		










  
}
#stacks_in_1923 .theme_title, #stacks_in_1923 .theme_title_b {  }
/* --------------- */
/* @group Built-in Webfonts */
@font-face {
font-family: 'cordial_proregregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_regular_39-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_regular_39-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'cordial_prosemibold';
src: url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_semibold_38-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_semibold_38-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'cordial_promedium';
src: url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_medium_38-webfont.woff2') format('woff2'),url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_medium_38-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'cordial_prolight';
src: url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_light_59-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_light_59-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'cordial_probold';
src: url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_bold_69-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_bold_69-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'cordial_pro_inlineBdrounded';
src: url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_inline_rou_17-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_inline_rou_17-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'cordial_pro_cherryBdrounded';
src: url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_cherry_rou_22-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/cordial_web/cordial_cherry_rou_22-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
/* cordial end */
@font-face {
font-family: 'rubik_mono_oneregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/rubikmonoone/rubikmonoone-regular-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'montserratbold';
src: url('../TravelWhatToDoCommunity_files/webfonts/montserrat/montserrat-bold-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/montserrat/montserrat-bold-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'abelregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/abel/abel-regular-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/abel/abel-regular-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'open_sanscondensed_light';
src: url('../TravelWhatToDoCommunity_files/webfonts/open-sans-condensed/opensans-condlight-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/open-sans-condensed/opensans-condlight-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'bree_serifregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/breeserif/breeserif-regular-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/breeserif/breeserif-regular-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'pacificoregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/pacifico/pacifico-regular-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/pacifico/pacifico-regular-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'signikaregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/signika/signika-regular-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/signika/signika-regular-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'rochesterregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/rochester/rochester-regular-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/rochester/rochester-regular-webfont.woff') format('woff')
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'playfair_display_scregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/playfairsc/playfairdisplaysc-regular-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/playfairsc/playfairdisplaysc-regular-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'ralewaylight';
src: url('../TravelWhatToDoCommunity_files/webfonts/raleway/raleway-light-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/raleway/raleway-light-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'fjalla_oneregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/fjallaone/fjallaone-regular-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/fjallaone/fjallaone-regular-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'vigaregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/viga/viga-regular-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/viga/viga-regular-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'ubunturegular';
src: url('../TravelWhatToDoCommunity_files/webfonts/ubuntu/ubuntu-r-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/ubuntu/ubuntu-r-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
@font-face {
font-family: 'archivo_blackregular';
src: url('../TravelWhatToDoCommunity_files/webfonts/archivoblack/archivoblack-regular-webfont.woff2') format('woff2'), url('../TravelWhatToDoCommunity_files/webfonts/archivoblack/archivoblack-regular-webfont.woff') format('woff');
font-weight: normal; font-style: normal; }
/* @end */
#stacks_in_1923 .decoration_color_1 {  background-color: #0000FF !important; display: block !important;	margin-top: 0px !important; margin-left: 0px !important;  }
#stacks_in_1923 .flash-color {  background-color: rgba(0, 0, 0, 0.35) !important;	width: 50px; height: 50px; margin-bottom: 13px; margin-right: auto; margin-left: auto; text-align: center;	
	display: none !important;  }
/* end style */



/*  EDIT mode */


/* -- End EACH CSS Template -- */#stacks_in_1923 .scrollButton-hypetitles {   display: none !important;  position: absolute;	left: 0; z-index: 6; margin-right: auto; margin-left: auto;	right: 0; bottom: 8%; border-radius: 56px; -webkit-border-radius: 56px; -moz-border-radius: 56px; padding: 0; width: 92px; display: block; -webkit-animation: hypetitles-button_pulse 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;-moz-animation: hypetitles-button_pulse 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; animation: hypetitles-button_pulse 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;	animation-iteration-count: 2; animation-delay: 0.15s; 
 }    
@keyframes hypetitles-button_pulse { 
0%{ opacity: 1; transform: scale(1.0) translate(0px, 0px); -moz-transform:    scale(1.0) translate(0px, 0px); -webkit-transform: scale(1.0) translate(0px, 0px); } 
30%{ opacity: 0.8; transform: scale(0.9) translate(0px, 4px); -moz-transform: scale(0.9) translate(0px, 4px); -webkit-transform: scale(0.9) translate(0px, 4px); } 
75%{ opacity: 1; transform: scale(1.0) translate(0px, 0px); -moz-transform: scale(1.0) translate(0px, 0px); -webkit-transform: scale(1.0) translate(0px, 0px); } 
 100%{ opacity: 1;  transform: scale(1.0) translate(0px, 0px); -moz-transform: scale(1.0) translate(0px, 0px); -webkit-transform: scale(1.0) translate(0px, 0px); }  
}

@-webkit-keyframes hypetitles-button_pulse { 0%{ -webkit-transform: scale(1.0) translate(0px, 0px); opacity: 1;} 30%{-webkit-transform: scale(0.9) translate(0px, 4px);  opacity: 0.8;} 75%{ -webkit-transform: scale(1.0) translate(0px, 0px); opacity: 1;} 100%{ -webkit-transform: scale(1.0) translate(0px, 0px); opacity: 1;} }

#stacks_in_1923 .scrollButton-hypetitles a {  font-size: 50px !important; line-height: 1em; transition: 0.05s linear; 	-webkit-transition: 0.04s linear; -moz-transition: 0.04s linear; 	-webkit-animation: hypetitles-button_pulse_initial 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; -moz-animation: hypetitles-button_pulse_initial 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; animation: hypetitles-button_pulse_initial 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; animation-iteration-count: 1; animation-delay: 0.3s;	color: #D5D5D5 !important;   
 }

#stacks_in_1923 .scrollButton-hypetitles [class^="fa fa-"], #stacks_in_1923 .scrollButton-hypetitles #stacks_in_1923 [class*="fa fa-"] { color: #D5D5D5 !important; } @keyframes hypetitles-button_pulse_initial { 0%{ opacity: 0; } 100%{ opacity: 1;} } @-webkit-keyframes hypetitles-button_pulse_initial { 0%{ opacity: 0;} 100%{ opacity: 1;} }
#stacks_in_1923 .scrollButton-hypetitles a:hover { text-shadow: 0 0 7px rgba(0, 0, 0, 0.25); }

#stacks_in_1923 .scrollButton-hypetitles [class^="fa fa-"] {  transition: all 0.17s linear; -moz-transition: all 0.17s linear; -webkit-transition: all 0.17s linear;  }
#stacks_in_1923 .scrollButton-hypetitles [class^="fa fa-"]:active {transform: scale(0.75) !important; -webkit-transform: scale(0.75) !important; -moz-transform: scale(0.75) !important; }

#target-hypetitles {  position: absolute; height: 0px; width: 100%; bottom: 0px;  
 }
@media only screen and (max-height: 601px) {
#stacks_in_1923 .scrollButton-hypetitles { display: none !important; } #stacks_in_1923 .scrollButton-hypetitles a {  font-size: 0 !important; display: none !important;  }  
}@media only screen and (min-width:0px){#stacks_in_1493{}}


#stacks_in_1493 {
	padding: 0px 5px 0px 5px;
}
#stacks_in_2343.hf-cards {
  padding: 64px 0;
  --hf-width: 500px;
  --hf-border-radius: 8px;
}
#stacks_in_2343.hf-cards,
#stacks_in_2343.hf-cards > [tag="node"] {
  /*  */
  /*  */
  justify-content: center;
  /*  */
  /*  */
  /*  */
  align-items: flex-start;
  /*  */
  /*  */
  /*  */
  /*  */
  gap: 64px;
}
/*  */
/*  */
#stacks_in_2343.hf-cards:not(.hf-c) .hf-gfx {
  filter: url('#round-corners_stacks_in_2343');
}
#stacks_in_2343 .hf-grad:before {
  filter: url('#round-corners_stacks_in_2343');
}
/*  */
/**/
.hf-cards #hf_stacks_in_2346 {
  --hf-bdrSize: 8px;
	--hf-lyrSize: 16px;
  --hf-lyrOffset: 16px;

  --hf-innerPaddingY: 12px;
  --hf-innerPaddingX: 24px;
  --hf-innerPaddingYNeg: 0px;
  
  

  --hf-innerBgColor: #FFFFFF;
  --hf-innerGColor1: #333333;
  --hf-innerGColor2: #222222;

  --hf-frontG1: #665BE6;
  --hf-frontG2: #4234E6;
  --hf-backG1: #564BD6;
  --hf-backG2: #3224D6;

  --hf-grad-clip-rad: calc(var(--hf-border-radius) - var(--hf-bdrSize));
  /*  */
  --hp-clip: calc(var(--hf-point2x) + var(--hf-lyrSize)*4);
  --hf-lyrSize-n2: calc(var(--hf-lyrSize) * -2);
}

#hf_stacks_in_2346.hf2-split .hf-card-header > div {
  
  
}
#hf_stacks_in_2346.hf-split .hf-card-footer > div {
  
  
}
#hf_stacks_in_2346.hf-v.hf2-split .hf-card-header > div {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  background-color: #FFFFFF;
  border: 4px solid #E7E7E7;
  border-radius: 9999px;
  box-shadow: 0px 4px 16px rgba(0,0,0,0.3);
}
#hf_stacks_in_2346.hf-v.hf-split .hf-card-footer > div {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  background-color: #FFFFFF;
  border: 4px solid #E7E7E7;
  border-radius: 9999px;
  box-shadow: 0px 4px 16px rgba(0,0,0,0.3);
}
#hf_stacks_in_2346.hf-v.hf2-split .hf-card-content-inner > .hf-grad {
  padding-top: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_2346.hf-v.hf-split .hf-card-content-inner > .hf-grad {
  padding-bottom: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_2346 .hf-card-content-inner {
  
  border-color: #0000FF;
  
}
#hf_stacks_in_2346.hf-v .hf-top .hf-gfx-lyr1 div {
  background-color: #0000FF;
  
}
#hf_stacks_in_2346.hf-v .hf-top .hf-gfx-lyr2 div {
  background-color: #0000FF;
  
}

#hf_stacks_in_2346 .hf-card-content-inner,
#hf_stacks_in_2346.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bg div,
#hf_stacks_in_2346.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bg div {
  background-color: var(--hf-innerBgColor);
}
/*  */

#hf_stacks_in_2346.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bdr div,
#hf_stacks_in_2346.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bdr div {
  
  
  background-color: #0000FF;
  
  
}
#hf_stacks_in_2346.hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
#hf_stacks_in_2346.hf-v .hf-bottom .hf-gfx-lyr1 div {
  background-color: #0000FF;
  
}
#hf_stacks_in_2346.hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
#hf_stacks_in_2346.hf-v .hf-bottom .hf-gfx-lyr2 div {
  background-color: #0000FF;
  
}

#hf_stacks_in_2346.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  padding: 12px 24px;
}
#hf_stacks_in_2346.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  padding: 12px 24px;
}
#hf_stacks_in_2346.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_2346.hf-detached:not(.hf-no-content) .hf-card-footer {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_2346.hf-v .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_2346.hf-v .hf-top .hf-gfx-lyr2 {
  left: calc(var(--hf-lyrOffset) * 2);
  right: calc(var(--hf-lyrOffset) * 2);
}
#hf_stacks_in_2346.hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_2346.hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
#hf_stacks_in_2346.hf-v .hf-bottom .hf-gfx-lyr1,
#hf_stacks_in_2346.hf-v .hf-top .hf-gfx-lyr1 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
/*  */
#hf_stacks_in_2346.hf-v .hf-border .hf-gfx-lyr2 > div {opacity: 0;}
#hf_stacks_in_2346.hf-v:not(.hf2-has-content) > .hf-card-inner {margin-top: calc(var(--hf-lyrSize) * -1);margin-bottom: calc(var(--hf-lyrSize) * -1)}
/*  */
/*  */
/*  */
/*  */
/*  */
@media only screen and (min-width:0px){#stacks_in_2350{}}


#stacks_in_2350 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  10px;
}
/* -- Start Mytime Each css Template -- */

.myTimeWrapper {
	display: none;
}

 

 

/* -- End Mytime Each css Template -- */@media only screen and (min-width:0px){#stacks_in_1243_82{}}

.stacks_in_1243_64 .desk_board{background-image:url(../rw_common/plugins/stacks/today-images/p1.jpg)}.stacks_in_1243_64 .today_month{border-color:rgba(15, 15, 255, 1.00);border-bottom-color:rgba(0, 0, 125, 1.00);background-color:rgba(0, 0, 255, 1.00);background:linear-gradient(rgba(0, 0, 255, 1.00),rgba(0, 0, 155, 1.00));}.stacks_in_1243_64 .today_inner{box-shadow:1px 1px 5px rgba(0, 0, 0, 1.00)}.stacks_in_1243_64.xsmall .square,.stacks_in_1243_64.xsmall .rounded,.stacks_in_1243_64.xsmall .desk_board{box-shadow:1px 1px 3px rgba(0, 0, 0, 1.00)}.stacks_in_1243_64.small .square,.stacks_in_1243_64.small .rounded,.stacks_in_1243_64.small .desk_board{box-shadow:1px 1px 4px rgba(0, 0, 0, 1.00)}.stacks_in_1243_64.medium .square,.stacks_in_1243_64.medium .rounded,.stacks_in_1243_64.medium .desk_board{box-shadow:1px 1px 5px rgba(0, 0, 0, 1.00)}.stacks_in_1243_64.large .square,.stacks_in_1243_64.large .rounded,.stacks_in_1243_64.large .desk_board{box-shadow:2px 2px 8px rgba(0, 0, 0, 1.00)}.stacks_in_1243_64.xlarge .square,.stacks_in_1243_64.xlarge .rounded,.stacks_in_1243_64.xlarge .desk_board{box-shadow:2px 2px 10px rgba(0, 0, 0, 1.00)}
/* FlexContact styles */
/* Bryn Owen Design, 2014+ */

#FlexClock_stacks_in_1243_11_time {
	text-align: center;
	color: #FFFFFF;
	font-size: 1.0em;
	
	font-family: sans-serif, sans-serif;
	
	
	font-weight: bold;
	
	}

#FlexClock_stacks_in_1243_11_date {
	
	text-align: center;
	color: #FFFFFF;
	font-size: 1.0em;
	
	font-family: sans-serif, sans-serif;
	
	}

.FlexClock_stacks_in_1243_11_slice {
	
	padding-top: 8px;
	
	
	display: none;
	
	}

.FlexClock_stacks_in_1243_11_slice * {
	text-align: center !important;
	}

.stacks_in_1243_92 img{width:100%;max-width:75px}
.stacks_in_1243_89 img{width:100%;max-width:100px}
.stacks_in_1243_86 img{width:100%;max-width:75px}



/*
 * jQuery FlexSlider v2.5.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 * 
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/

 /*
@font-face {
  font-family: 'flexslider-icon';
  src: url('fonts/flexslider-icon.eot');
  src: url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('fonts/flexslider-icon.woff') format('woff'), url('fonts/flexslider-icon.ttf') format('truetype'), url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.sf-flexslider {
  margin: 0;
  padding: 0;
}
.sf-flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.sf-flexslider .slides img {
  width: 100%;
  display: block;
}
.sf-flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .sf-flexslider .slides {
  display: block;
}
* html .sf-flexslider .slides {
  height: 1%;
}
.no-js .sf-flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.sf-flexslider {
  margin: 0 0 60px;
  background: #ffffff;
  border: 4px solid #ffffff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
}
.sf-flexslider .slides {
  zoom: 1;
}
.sf-flexslider .slides img {
  height: auto;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
  /*font-family: "flexslider-icon";*/
  font-size: 40px;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.sf-flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.sf-flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.sf-flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.sf-flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  /*font-family: "flexslider-icon";*/
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}

/* SuperFlex 3.0.8 */

@font-face {
	font-family: 'sf-icons';
	src: url('fonts/sf-icons.eot');
}
@font-face {
	font-family: 'sf-icons';
	src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8R/OYAAAC8AAAAYGNtYXAgVsCMAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5Zl5qkmkAAAF4AAAB6GhlYWQHMNyTAAADYAAAADZoaGVhBv4DywAAA5gAAAAkaG10eB4ABTYAAAO8AAAAKGxvY2ECLgHGAAAD5AAAABZtYXhwAAwAGQAAA/wAAAAgbmFtZQNRKj8AAAQcAAABknBvc3QAAwAAAAAFsAAAACAAAwO3AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADgBQPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg4AX//f//AAAAAAAg4AD//f//AAH/4yAEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAPT/0QMMA8AAFgAAATIWFxYUBwkBFhQHBiInASY0NwE+ATMC4gwWCBIS/mUBmxISETES/jwSEgHECRYLA8AJCBIxEf5l/mURMRIREQHFETIRAcUICQAAAQDE/8ADPAPAAAUAAAU3CQEnAQLEeP53AYl4/gBAdwGJAYl3/gAAAAEA4//PAx0DsQAVAAATARYyPwE2NCcJATY0LwEmIgcBBhQX4wHLECsPJRAQ/n8BgRAQJQ8rEP41EBABm/40Dw8lECsPAYIBgg8rECUPD/40DywPAAEA9P/AAwwDrwAWAAAFIiYnJjQ3CQEmNDc2MhcBFhQHAQ4BIwEeDBYIEhIBm/5lEhIRMRIBxBIS/jwJFgtACQgSMREBmwGbETESERH+OxEyEf47CAkAAAABAOP/zwMdA7EAFQAACQEmIg8BBhQXCQEGFB8BFjI3ATY0JwMd/jUQKw8lEBABgf5/EBAlDysQAcsQEAHlAcwPDyUQKw/+fv5+DysQJQ8PAcwPLA8AAAAAAQDE/8ADPAPAAAUAAAEHCQEXAQE8eAGJ/nd4AgADwHf+d/53dwIAAAEAAAABAAC/FVBDXw889QALBAAAAAAA0mrMCwAAAADSaswLAAD/wAM8A8AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAAzwAAQAAAAAAAAAAAAAAAAAAAAoEAAAAAAAAAAAAAAACAAAABAAA9AQAAMQEAADjBAAA9AQAAOMEAADEAAAAAAAKABQAHgBKAF4AiAC0AOAA9AAAAAEAAAAKABcAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAIAAAAAQAAAAAAAgAHAGkAAQAAAAAAAwAIADkAAQAAAAAABAAIAH4AAQAAAAAABQALABgAAQAAAAAABgAIAFEAAQAAAAAACgAaAJYAAwABBAkAAQAQAAgAAwABBAkAAgAOAHAAAwABBAkAAwAQAEEAAwABBAkABAAQAIYAAwABBAkABQAWACMAAwABBAkABgAQAFkAAwABBAkACgA0ALBzZi1pY29ucwBzAGYALQBpAGMAbwBuAHNWZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBzZi1pY29ucwBzAGYALQBpAGMAbwBuAHNzZi1pY29ucwBzAGYALQBpAGMAbwBuAHNSZWd1bGFyAFIAZQBnAHUAbABhAHJzZi1pY29ucwBzAGYALQBpAGMAbwBuAHNGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype');
	font-weight: normal;
	font-style: normal;
}

i.sf-control {
	font-family: 'sf-icons';
	font-size: 18px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.sf-icon-cl-1:before {
	content: "\e000";
}
.sf-icon-cl-2:before {
	content: "\e002";
}
.sf-icon-cl-3:before {
	content: "\e001";
}
.sf-icon-cr-1:before {
	content: "\e003";
}
.sf-icon-cr-2:before {
	content: "\e004";
}
.sf-icon-cr-3:before {
	content: "\e005";
}

#sf3-folder-check{
	margin: 20px 0 10px;
}
#sf3-folder-check:not(.sf3-error) span{
	background: #119115;
	border-radius: 50px;
	padding: 8px 15px;
}
#sf3-folder-check div,
#sf3-folder-check.sf3-error{
	text-align: center;
	font-size: 16px;
	color: #AFFFB7;
	padding: 10px;
}
.sf3-error:before{
	content:'Folder cannot be found.';
	color: #fff;
	font-weight: bolder;
	background:#D53F4F;
	border-radius: 50px;padding: 8px 15px;
}
#stacks_in_2358_25-sf .sf3-error:after{
	content:'http://my-website.com/remote';
	color: #D53F4F;
	font-weight: bolder;
	background:#fff;
	margin-left: 15px;
	border: 2px solid #D53F4F;
	border-radius: 50px;padding: 8px 15px;
}
.sf3-error img{
	display: none;
}



#stacks_in_2358_25-sf .flex-control-nav{
	bottom: 0;
	padding: 12px 0 0 !important;
	position: relative;
}
#stacks_in_2358_25-sf .flex-control-nav.flex-control-paging li a.flex-active{
	background: rgba(36, 181, 227, 1.00);
}
#stacks_in_2358_25-sf .flex-control-nav.flex-control-paging li a{
	background: rgba(17, 17, 17, 0.75);
	-webkit-transition: background 300ms;
	transition: background 300ms;
}
#stacks_in_2358_25-sf ul.slides{
	margin:0 !important;
	padding:0 !important;
}
#stacks_in_2358_25-sf{
	position: relative;
	z-index: 10;
	height: auto;
}
#stacks_in_2358_25-sf,
#stacks_in_2358_25-sf .slider.sf-flexslider{
	background-color: transparent;
	overflow: hidden;
	margin: 0;
	border: 0;
}

#stacks_in_2358_25-sf .sf-flexslider{
	opacity: 1;
	margin: 0;
	border-radius: 0;
	-webkit-transition: opacity 500ms;
	transition: opacity 500ms;
}
#stacks_in_2358_25-sf .sf-error{
	text-align: center;
	font-size: 15px;
	margin: 30px 0;
	font-weight: bolder;
	padding: 7px 10px;
	line-height: 20px;
	border-radius: 4px;
	color: #FFF;
	background: #F78E8F;
	display: inline-block;
}

#stacks_in_2358_25-sf .slider.loaded{
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}
/* Instant Load */
#stacks_in_2358_25-sf .loaded .flex-viewport,
#stacks_in_2358_25-sf .slider,
#stacks_in_2358_25-sf .flex-viewport{
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}
#stacks_in_2358_25-sf .sf-flexslider.loading{opacity: 0;}

#stacks_in_2358_25-sf{min-height: 70px;}

#stacks_in_2358_25-sf .carousel{
	background-color: rgba(0, 0, 0, 1.00);
	line-height: 0;
}
#stacks_in_2358_25-sf .flex-loading{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border: 5px solid transparent;
	border-bottom-color: rgba(25, 165, 223, 1.00);
	border-top-color: rgba(25, 165, 223, 1.00);
	-webkit-animation: rotate 500ms linear 0s infinite;
	animation: rotate 500ms linear 0s infinite;
}
@media only screen and (max-width: 400px) {
	#stacks_in_2358_25-sf .flex-loading{
		display: none;
	}
}
@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotate {
	from {
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
#stacks_in_2358_25-sf .sf-flexslider.carousel{
line-height: 0;
}
#stacks_in_2358_25-sf .sf-flexslider .slides.sf-effect-fade > li.flex-active-slide{
	
	position: relative !important;
	top: 0 !important;
	left: 0 !important;
	
}
#stacks_in_2358_25-sf .sf-flexslider .slides > li{
	position: relative;
	line-height: normal;
}
#stacks_in_2358_25-sf .sf-flexslider .slides > li img{
	padding-bottom: 0 !important;
	
}
#stacks_in_2358_25-sf .sf-flexslider .slides > li,
#stacks_in_2358_25-sf .sf-flexslider .carousel > li,
#stacks_in_2358_25-sf ul.flex-direction-nav{
	background: none inherit;
	/*margin: 0 !important;*/
	opacity: 1;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
	padding: 0 !important;
	list-style: none !important;
}
#stacks_in_2358_25-sf ul.flex-direction-nav li{
	background: none inherit;
	padding: 0 !important;
	list-style: none !important;
}
#stacks_in_2358_25-sf .sf-flexslider .slides > li.hero{
	text-align: center;
}
#stacks_in_2358_25-sf .sf-flexslider .slides > li.hero div.sf-hero-background{
	background-size: cover;
	background-position: center;
	position:absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
#stacks_in_2358_25-sf .sf-hero-bg-crop{
	overflow: hidden;
	position:absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
#stacks_in_2358_25-sf .sf-flexslider .slides > li.hero .sf-hero-content{
	text-align: center;
	position: relative;
	padding: 20% 5%;
	z-index: 10;
	-webkit-backface-visibility: hidden; /* Chrome, Safari, Opera */
  backface-visibility: hidden;
}
#stacks_in_2358_25-sf .sf-flexslider .slides > li.hero .sf-hero-tint{
	position:absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

#stacks_in_2358_25-sf .sf-flexslider .slides > li.hero h2,
#stacks_in_2358_25-sf .sf-flexslider .slides > li.hero p{
	text-shadow: none;
	display: inline-block;
	margin: 0;
	text-decoration: none;
	padding: 5px 0 !important;
}
#stacks_in_2358_25-sf .sf-flexslider .slides > li.hero a.sf-hero-button{
	display: inline-block;
	text-shadow: none;
	border-radius: 4px;
	margin-top: 10px;
	text-decoration: none;
}

#stacks_in_2358_25-sf .sf-flexslider .slides > li.youtube .embed-container,
#stacks_in_2358_25-sf .sf-flexslider .slides > li.vimeo .embed-container,
#stacks_in_2358_25-sf .sf-flexslider .slides > li.map .embed-container{
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	margin-bottom: 0;
	overflow: hidden; 
	max-width: 100%;
}
#stacks_in_2358_25-sf .sf-flexslider .slides > li.instagram .embed-container{
	position: relative; 
	padding-bottom: 100%; 
	height: 0; 
	overflow: hidden;
}
#stacks_in_2358_25-sf .sf-flexslider .slides > li .embed-container iframe,
#stacks_in_2358_25-sf .sf-flexslider .slides > li .embed-container object,
#stacks_in_2358_25-sf .sf-flexslider .slides > li .embed-container embed{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#stacks_in_2358_25-sf .sf-flexslider .slides > li .embed-container div.fluid-width-video-wrapper{
	padding-top: 56.25% !important;
}

#stacks_in_2358_25-sf li.hero h2,
#stacks_in_2358_25-sf li.hero p,
#stacks_in_2358_25-sf li.hero a.sf-hero-button{
	opacity: 0;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
#stacks_in_2358_25-sf li.hero:not(.flex-active-slide) h2,
#stacks_in_2358_25-sf li.hero:not(.flex-active-slide) p,
#stacks_in_2358_25-sf li.hero:not(.flex-active-slide) a.sf-hero-button{
	-webkit-transition: opacity 300ms !important;
	transition: opacity 300ms !important;
}
#stacks_in_2358_25-sf .slider.loaded .flex-active-slide.hero h2,
#stacks_in_2358_25-sf .slider.loaded .flex-active-slide.hero p,
#stacks_in_2358_25-sf .slider.loaded .flex-active-slide.hero a.sf-hero-button{
	opacity: 1;
}

/* Caption */

#stacks_in_2358_25-sf p.flex-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0;
	margin: 0;
	background: rgba(0,0,0,0.65);
	width: 100%;
	opacity: 0;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
#stacks_in_2358_25-sf .slider.loaded p.flex-caption{
	-webkit-transition: opacity 300ms 300ms;
	transition: opacity 300ms 300ms;
}
#stacks_in_2358_25-sf p.flex-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: 14px;
	line-height: 140%;
	text-shadow: none;
	padding: 2% 3%;
}
#stacks_in_2358_25-sf .flex-active-slide .caption-wrap,
#stacks_in_2358_25-sf .slider.loaded .flex-active-slide p.flex-caption,
#stacks_in_2358_25-sf .slider.loaded .flex-active-slide:hover .caption-wrap,
#stacks_in_2358_25-sf .caption-wrap{
	opacity: 1;
}
#stacks_in_2358_25-sf .flex-active-slide .caption-wrap{
	position: relative;
	z-index: 100;
}
#stacks_in_2358_25-sf .caption-wrap{
	-webkit-transition: opacity .3s 300ms;
	transition: opacity .3s 300ms;
}
li.sf3-slide.hide-caption .caption-wrap{
	display: none;
}
#stacks_in_2358_25-sf .slider.loaded .flex-active-slide .caption-wrap{
	opacity: 0;
	-webkit-transition: opacity .5s 303ms;
	transition: opacity .5s 30300ms;

	-webkit-transition: opacity .5s 3300ms;
	transition: opacity .5s 3300ms;
}
#stacks_in_2358_25-sf .slider.loaded .flex-active-slide:hover .caption-wrap{
	-webkit-transition: opacity .3s !important;
	transition: opacity .3s !important;
}
@media only screen and (max-width: 400px) {
	#stacks_in_2358_25-sf p.flex-caption{
		display: none;
	}
}

/* Direction */

#stacks_in_2358_25-sf .flex-direction-nav .flex-disabled{display: none;}

#stacks_in_2358_25-sf .slider .flex-direction-nav .flex-prev,
#stacks_in_2358_25-sf .slider:hover .flex-direction-nav .flex-prev{left: 30px;}

#stacks_in_2358_25-sf .slider .flex-direction-nav .flex-next,
#stacks_in_2358_25-sf .slider:hover .flex-direction-nav .flex-next{right: 30px;}

#stacks_in_2358_25-sf .carousel .flex-direction-nav .flex-prev,
#stacks_in_2358_25-sf .carousel:hover .flex-direction-nav .flex-prev{left: 15px;}

#stacks_in_2358_25-sf .carousel .flex-direction-nav .flex-next,
#stacks_in_2358_25-sf .carousel:hover .flex-direction-nav .flex-next{right: 15px;}

#stacks_in_2358_25-sf .sf-flexslider .flex-direction-nav .flex-prev,
#stacks_in_2358_25-sf .sf-flexslider .flex-direction-nav .flex-next {
	-moz-transition: transform .3s, background-color .3s;
	-webkit-transition: transform .3s, background-color .3s;
	transition: transform .3s, background-color .3s;
}

#stacks_in_2358_25-sf .sf-flexslider .flex-direction-nav .flex-prev {
	-moz-transform: translateX(-118px);
	-webkit-transform: translateX(-118px);
	transform: translateX(-118px);
}
#stacks_in_2358_25-sf .sf-flexslider .flex-direction-nav .flex-next {
	-moz-transform: translateX(118px);
	-webkit-transform: translateX(118px);
	transform: translateX(118px);
}



#stacks_in_2358_25-sf .sf-flexslider:hover .flex-direction-nav .flex-prev,
#stacks_in_2358_25-sf .sf-flexslider:hover .flex-direction-nav .flex-next{
	-moz-transform: translateX(0px);
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}
#stacks_in_2358_25-sf .flex-direction-nav a {
	position: absolute;
	top: 50%;
	opacity: 1;
	outline: 0;
	width: 44px;
	height: 44px;
	margin-top: -22.000000px;
	border-radius: 4px;
	text-shadow: none;
	text-indent: 0;
	z-index: 9999;
}
#stacks_in_2358_25-sf .flex-direction-nav a {background: rgba(0, 0, 0, 0.50);}
#stacks_in_2358_25-sf .flex-direction-nav a:hover {background: rgba(0, 0, 0, 1.00);}
#stacks_in_2358_25-sf .flex-direction-nav a:before {display: none;}

#stacks_in_2358_25-sf .sf-control{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -9px 0 0 -9px;
}
#stacks_in_2358_25-sf .sf-control:before,
#stacks_in_2358_25-sf .sf-control:after{
	-webkit-transition: color 300ms;
	transition: color 300ms;
	color: rgba(255, 255, 255, 1.00);
}
#stacks_in_2358_25-sf .flex-direction-nav a:hover .sf-control:before,
#stacks_in_2358_25-sf .flex-direction-nav a:hover .sf-control:after{color: rgba(8, 211, 253, 1.00);}

@media only screen and (max-width: 400px) {
	#stacks_in_2358_25-sf .flex-direction-nav{
		opacity: 0;
	}
}

@media only screen and (max-width: 400px) {
	#stacks_in_2358_25-sf.iframe .flex-direction-nav{display: block;}
}
@media only screen and (max-width: 400px) {
	#stacks_in_2358_25-sf.iframe .sf-flexslider .flex-direction-nav .flex-prev,
	#stacks_in_2358_25-sf.iframe .sf-flexslider .flex-direction-nav .flex-next{
		-moz-transform: translateX(0px);
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
}


/* Thumbnails */

#stacks_in_2358_25-sf .carousel{
	border-radius: 0 0 3px 3px;
	line-height: 0;
	margin-top: -1px;
	border: 6px solid rgba(0, 0, 0, 1.00);
}
@media only screen and (max-width: 400px) {
	#stacks_in_2358_25-sf .carousel{
		display: none;
	}
}
#stacks_in_2358_25-sf .carousel *{
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
#stacks_in_2358_25-sf .carousel .slides li{
	width: 70px;
	margin-right: 0;
	opacity: 0.65;
	transition: opacity 150ms;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	
}
#stacks_in_2358_25-sf .carousel .slides li:before{
	content: '';
	display: block;
	padding-top: 70%;
}
#stacks_in_2358_25-sf .carousel .slides li + li{
	margin-left: 5px !important;
}
#stacks_in_2358_25-sf .carousel .slides li:hover,
#stacks_in_2358_25-sf .carousel .slides li.flex-active-slide,
#stacks_in_2358_25-sf .carousel .slides li.flex-active-slide:hover{
	opacity: 1;
}

#stacks_in_2358_25-sf .carousel .flex-direction-nav .flex-prev {
	-moz-transform: translateX(-103px);
	-webkit-transform: translateX(-103px);
	transform: translateX(-103px);
}
#stacks_in_2358_25-sf .carousel .flex-direction-nav .flex-next {
	-moz-transform: translateX(103px);
	-webkit-transform: translateX(103px);
	transform: translateX(103px);
}

#stacks_in_2358_25-sf .carousel .flex-direction-nav a { background: rgba(0, 0, 0, 0.50); }
#stacks_in_2358_25-sf .carousel .flex-direction-nav a:hover { background: rgba(0, 0, 0, 1.00); }

#stacks_in_2358_25-sf .carousel .sf-control{ color: rgba(255, 255, 255, 1.00);}
#stacks_in_2358_25-sf .carousel .flex-direction-nav a:hover .sf-control{ color: rgba(8, 211, 253, 1.00); }



/* Edit  */

#stacks_in_2358_25-sf .freeze{
	text-align: center;
	padding: 20px 0;
	margin: 20px 0;
	border-radius: 5px;
	border: 2px solid #2E83F8;
}
#stacks_in_2358_25-sf .freeze span{
	color: #2E83F8;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 13px;
	font-weight: 600;
}







/* -- Start Bellboy Each css Template -- */

.stacks_in_1245_6bellboywrapper{
	width: 50px;
	margin: 0 auto;
	
	display : none;
	
}

.stacks_in_1245_6bellboy{
	position: relative;
	cursor: pointer;
	background: rgba(0, 0, 0, 1.00);
	width: 50px;
	height: 50px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: rgba(255, 255, 255, 1.00);
	text-align: center;
	line-height: 50px;
	font-size: 22.727272px;
	margin: 5px;
	z-index: 1000;
	background: rgba(0, 0, 0, 1.00);
}


.stacks_in_1245_6bellboy i {
	position: relative;
	display: block;
	margin: 0 auto 0 auto;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 22.727272px;
	vertical-align: middle;
}


.stacks_in_1245_6bellboy:hover{
	color: rgba(235, 235, 235, 1.00);
	background: rgba(15, 15, 15, 1.00); /* Old browsers */
}

/* -- End Bellboy Each css Template -- */#elevator-to-top{--elevator-width:50px;--elevator-height:50px;--elevator-color:rgba(0, 0, 0, 1.00);--elevator-radius:5px;--elevator-fill:rgba(255, 255, 255, 1.00);--elevator-border-color:rgba(255, 255, 255, 1.00);--elevator-border-width:0px;--elevator-icon-width:24px;--elevator-shadow:0 0 10px rgba(0,0,0,0.5);-webkit-appearance:none;appearance:none;display:none;overflow:hidden;justify-content:center;align-items:center;padding:0;margin:0;cursor:pointer;transition:all 200ms ease-in-out;position:fixed;bottom:10px;right:10px;z-index:9999;width:var(--elevator-width);height:var(--elevator-height);border-color:var(--elevator-border-color);border-width:var(--elevator-border-width);border-style:solid;background-color:var(--elevator-color);color:var(--elevator-fill);box-shadow:var(--elevator-shadow);border-radius:var(--elevator-radius)}#elevator-to-top svg{width:var(--elevator-icon-width);fill:var(--elevator-fill)}#elevator-to-top:active,#elevator-to-top:focus{outline:none}#elevator-to-top:hover{scale:1.05}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_1245_7 {
	width: 100%;
	clear: both;
	padding-top: 5px;
	padding-bottom: 0px;
}
#simpleDivider_stacks_in_1245_7 .theDivider1,
#simpleDivider_stacks_in_1245_7 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_1245_7 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_1245_7.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_1245_7.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_1245_7 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_1245_7.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_1245_7.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_1245_7.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_1245_7.bgImageOn .theDivider1 img {
	display: block;
}

#box {
  width: 100%;
  height: 400px;
  background: crimson; }

/*  */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-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;
  margin-left: auto;
  margin-right: auto; }
  .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; }

body {
  margin: 0; }

#slidetastic-stacks_in_1246_6 {
  max-width: 5000px;
  padding: 0px 0;
  margin: 0 auto;
  position: relative; }
  #slidetastic-stacks_in_1246_6.no-dots .slidetastic-dots {
    display: none; }
  #slidetastic-stacks_in_1246_6.no-arrows .slidetastic-nav {
    display: none; }

#slidetastic-stacks_in_1246_6 .slidetastic-dots {
  z-index: 10;
  width: 100%;
  position: absolute; }
  #slidetastic-stacks_in_1246_6 .slidetastic-dots.dots-top {
    top: 100px; }
  #slidetastic-stacks_in_1246_6 .slidetastic-dots.dots-bottom {
    bottom: 100px; }
  #slidetastic-stacks_in_1246_6 .slidetastic-dots ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    #slidetastic-stacks_in_1246_6 .slidetastic-dots ul li.slick-active button {
      background: rgba(0, 0, 0, 1.00); }
    #slidetastic-stacks_in_1246_6 .slidetastic-dots ul li button {
      width: 10px;
      height: 10px;
      margin: 5px;
      background: rgba(0, 0, 0, 0.50);
      border-radius: 5px;
      padding: 0;
      font-size: 0;
      border: none;
      outline: none;
      display: block;
      line-height: 0; }

#slidetastic-stacks_in_1246_6 .slidetastic-nav {
  z-index: 10;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  pointer-events: none;
  box-sizing: border-box; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn {
    width: 50px;
    height: 50px;
    margin: 5px 5px;
    color: rgba(255, 255, 255, 1.00);
    background: rgba(0, 0, 0, 1.00);
    border-radius: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    pointer-events: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn:hover {
      color: rgba(255, 255, 255, 1.00);
      background: rgba(0, 0, 0, 1.00); }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn:hover a, #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn:hover i {
      color: rgba(255, 255, 255, 1.00); }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn a, #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn i {
      color: inherit; }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn i {
      font-size: 24px; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-stacked-left.arrows-h-left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-stacked-left.arrows-h-left .slidetastic-nav-btn {
      margin-right: 0; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-stacked-center.arrows-h-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-stacked-center.arrows-h-center .slidetastic-nav-btn {
      margin-left: 0;
      margin-right: 0; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-stacked-right.arrows-h-right {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-stacked-right.arrows-h-right .slidetastic-nav-btn {
      margin-left: 0; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-h-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-h-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-h-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-h-separate {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-h-separate .slidetastic-nav-btn-prev {
      margin-right: 0; }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-h-separate .slidetastic-nav-btn-next {
      margin-left: 0; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-v-top {
    top: 0; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-v-bottom {
    bottom: 0; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-v-center {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-v-full {
    top: 0px;
    bottom: 0px; }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav.arrows-v-full .slidetastic-nav-btn {
      height: calc(100%	- 10px); }

#slidetastic-stacks_in_1246_6 .slidetastic-slider {
  box-sizing: border-box;
  /*  */
  opacity: 0;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  padding: 0px;
  /*  */ }
  #slidetastic-stacks_in_1246_6 .slidetastic-slider.slider-centered .slidetastic-slide .slidetastic-slide-inner {
    /*  */
    opacity: 0.2;
    /*  */ }
  #slidetastic-stacks_in_1246_6 .slidetastic-slider .slidetastic-slide {
    padding: 0 10px;
    box-sizing: border-box; }
    #slidetastic-stacks_in_1246_6 .slidetastic-slider .slidetastic-slide-inner {
      border-radius: 2px;
      /*  */
      min-height: 0px;
      background: rgba(0, 0, 0, 0.00);
      /*  */
      width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      transition: opacity 0.3s ease; }
    #slidetastic-stacks_in_1246_6 .slidetastic-slider .slidetastic-slide.slick-current .slidetastic-slide-inner, #slidetastic-stacks_in_1246_6 .slidetastic-slider .slidetastic-slide.slick-active .slidetastic-slide-inner {
      opacity: 1; }

#slidetastic-stacks_in_1246_6.caption-always .slidetastic-image .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_1246_6.caption-hover .slidetastic-image:hover .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_1246_6.caption-active .slidetastic-slide.slick-active .slidetastic-image-caption, #slidetastic-stacks_in_1246_6.caption-active .slidetastic-slide.slick-current .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_1246_6.caption-active-hover .slidetastic-image:hover .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_1246_6.caption-active-hover .slidetastic-slide.slick-active .slidetastic-image-caption, #slidetastic-stacks_in_1246_6.caption-active-hover .slidetastic-slide.slick-current .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_1246_6.caption-active-hover .slidetastic-image:hover .slidetastic-image-caption {
  opacity: 1; }

#slidetastic-stacks_in_1246_6.no-caption-titles .slidetastic-image .slidetastic-image-caption .slidetastic-image-title {
  display: none; }

#slidetastic-stacks_in_1246_6.no-caption-descriptions .slidetastic-image .slidetastic-image-caption .slidetastic-image-description {
  display: none; }

#slidetastic-stacks_in_1246_6.caption-top .slidetastic-image .slidetastic-image-caption {
  top: 0; }

#slidetastic-stacks_in_1246_6.caption-bottom .slidetastic-image .slidetastic-image-caption {
  bottom: 0; }

#slidetastic-stacks_in_1246_6.caption-outside.caption-top .slidetastic-image {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }

#slidetastic-stacks_in_1246_6.caption-outside.caption-bottom .slidetastic-image {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

#slidetastic-stacks_in_1246_6.caption-outside .slidetastic-image .slidetastic-image-caption {
  position: relative; }

#slidetastic-stacks_in_1246_6 .slidetastic-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  position: relative; }
  #slidetastic-stacks_in_1246_6 .slidetastic-image * {
    box-sizing: border-box; }
  #slidetastic-stacks_in_1246_6 .slidetastic-image img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }
  #slidetastic-stacks_in_1246_6 .slidetastic-image .slidetastic-image-caption {
    /*  */
    opacity: 0;
    transition: all 0.3s ease;
    /*  */
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    position: absolute;
    padding: 20px 20px;
    background: rgba(0, 0, 0, 0.70);
    text-align: left; }
    #slidetastic-stacks_in_1246_6 .slidetastic-image .slidetastic-image-caption .slidetastic-image-title {
      color: rgba(255, 255, 255, 1.00);
      font-size: 28px;
      font-weight: bold;
      font-family: Rubik;
      padding-bottom: 5px;
      line-height: 45.304001px; }
    #slidetastic-stacks_in_1246_6 .slidetastic-image .slidetastic-image-caption .slidetastic-image-description {
      color: rgba(255, 255, 255, 1.00);
      font-family: Rubik;
      font-size: 16px;
      line-height: 25.888000px; }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@media (min-width: 768px) {
  /*  */
  /*  */ }

@media (min-width: 480px) and (max-width: 768px) {
  /*  */
  #slidetastic-stacks_in_1246_6 .slidetastic-slider .slidetastic-slide {
    padding: 0 10px; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 20px; }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn i {
      font-size: 20px; }
  #slidetastic-stacks_in_1246_6 .slidetastic-image .slidetastic-image-caption .slidetastic-image-title {
    font-size: 20px;
    padding-bottom: 5px;
    line-height: 32.360001px; }
  #slidetastic-stacks_in_1246_6 .slidetastic-image .slidetastic-image-caption .slidetastic-image-description {
    font-size: 14px;
    line-height: 22.652000px; }
  /*  */ }

@media (min-width: 0px) and (max-width: 480px) {
  /*  */
  #slidetastic-stacks_in_1246_6 .slidetastic-slider .slidetastic-slide {
    padding: 0 10px; }
  #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn {
    width: 35px;
    height: 35px;
    border-radius: 20px; }
    #slidetastic-stacks_in_1246_6 .slidetastic-nav .slidetastic-nav-btn i {
      font-size: 18px; }
  #slidetastic-stacks_in_1246_6 .slidetastic-image .slidetastic-image-caption .slidetastic-image-title {
    font-size: 18px;
    padding-bottom: 5px;
    line-height: 29.124001px; }
  #slidetastic-stacks_in_1246_6 .slidetastic-image .slidetastic-image-caption .slidetastic-image-description {
    font-size: 13px;
    line-height: 21.034000px; }
  /*  */ }




.stacks_in_1247_80 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

.stacks_in_1247_84 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}




.stacks_in_1247_116 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

.tierahs.stacks_in_1247_119,.tierahs-link.stacks_in_1247_119{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_1247_119 svg,.tierahs-link.stacks_in_1247_119 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_1247_119 svg *,.tierahs-link.stacks_in_1247_119 svg *{fill:rgba(255, 255, 255, 1.00)}

.tierahs.stacks_in_1247_122,.tierahs-link.stacks_in_1247_122{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_1247_122 svg,.tierahs-link.stacks_in_1247_122 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_1247_122 svg *,.tierahs-link.stacks_in_1247_122 svg *{fill:rgba(255, 255, 255, 1.00)}

.tierahs.stacks_in_1247_125,.tierahs-link.stacks_in_1247_125{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_1247_125 svg,.tierahs-link.stacks_in_1247_125 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_1247_125 svg *,.tierahs-link.stacks_in_1247_125 svg *{fill:rgba(255, 255, 255, 1.00)}
.stacks_in_1247_127 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

.tierahs.stacks_in_1247_130,.tierahs-link.stacks_in_1247_130{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_1247_130 svg,.tierahs-link.stacks_in_1247_130 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_1247_130 svg *,.tierahs-link.stacks_in_1247_130 svg *{fill:rgba(255, 255, 255, 1.00)}

.tierahs.stacks_in_1247_133,.tierahs-link.stacks_in_1247_133{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_1247_133 svg,.tierahs-link.stacks_in_1247_133 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_1247_133 svg *,.tierahs-link.stacks_in_1247_133 svg *{fill:rgba(255, 255, 255, 1.00)}

.tierahs.stacks_in_1247_136,.tierahs-link.stacks_in_1247_136{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_1247_136 svg,.tierahs-link.stacks_in_1247_136 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_1247_136 svg *,.tierahs-link.stacks_in_1247_136 svg *{fill:rgba(255, 255, 255, 1.00)}

.tierahs.stacks_in_1247_150,.tierahs-link.stacks_in_1247_150{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_1247_150 svg,.tierahs-link.stacks_in_1247_150 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_1247_150 svg *,.tierahs-link.stacks_in_1247_150 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_1247_148,.tierahs-link.stacks_in_1247_148{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_1247_148 svg,.tierahs-link.stacks_in_1247_148 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_1247_148 svg *,.tierahs-link.stacks_in_1247_148 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_1247_146,.tierahs-link.stacks_in_1247_146{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_1247_146 svg,.tierahs-link.stacks_in_1247_146 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_1247_146 svg *,.tierahs-link.stacks_in_1247_146 svg *{fill:rgba(255, 255, 255, 1.00)}
.tierahs.stacks_in_1247_144,.tierahs-link.stacks_in_1247_144{color:rgba(255, 255, 255, 1.00);font-size:24px;width:24px}.tierahs.stacks_in_1247_144 svg,.tierahs-link.stacks_in_1247_144 svg{max-width:24px;max-height:24px}.tierahs.stacks_in_1247_144 svg *,.tierahs-link.stacks_in_1247_144 svg *{fill:rgba(255, 255, 255, 1.00)}


#stacks_in_1247_154 {
	margin: 10px 10px 10px 10px;
}
.stacks_in_1247_157 img{width:100%;max-width:130px}
