/*
 * 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);
}


#stacks_in_23>.s3_row {
	margin: 0 -10px;
}

#stacks_in_23>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_23>.s3_row>.s3_column_right {
	width: 80.000000%;
}




#stacks_in_23>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_23>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_23>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_23 {
	background-color: rgba(204, 223, 240, 1.00);
	border: solid rgba(37, 100, 169, 1.00);
	border-width:  1px;
	-moz-border-radius:  6px;
	-webkit-border-radius:  6px;
	border-radius:  6px;
}

#stacks_in_27 {
	background-color: rgba(80, 174, 255, 0.00);
}

#stacks_in_24 {
	margin:  9px;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_311 {
	height: 10.00px;
}




















@media print {
	#spacerStackstacks_in_311 {
		display: none !important;
	}
}
#stacks_in_35.hf-cards {
  padding: 32px 0;
  --hf-width: 320px;
  --hf-border-radius: 5px;
}
#stacks_in_35.hf-cards,
#stacks_in_35.hf-cards > [tag="node"] {
  /*  */
  /*  */
  justify-content: center;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  align-items: stretch;
  /*  */
  gap: 32px;
}
/*  */
#stacks_in_35 .hf-v .hf-card-content-inner {
    height: 100%;
}
#stacks_in_35 .hf-v .hf-card-content {
  display: grid;
  grid-template-rows: min-content 1fr min-content;
}
/*  */
/*  */
#stacks_in_35.hf-cards:not(.hf-c) .hf-gfx {
  filter: url('#round-corners_stacks_in_35');
}
#stacks_in_35 .hf-grad:before {
  filter: url('#round-corners_stacks_in_35');
}
/*  */
/**/
.hf-cards #hf_stacks_in_37 {
  --hf-bdrSize: 4px;
	--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_37.hf2-split .hf-card-header > div {
  
  
}
#hf_stacks_in_37.hf-split .hf-card-footer > div {
  
  
}
#hf_stacks_in_37.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_37.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_37.hf-v.hf2-split .hf-card-content-inner > .hf-grad {
  padding-top: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_37.hf-v.hf-split .hf-card-content-inner > .hf-grad {
  padding-bottom: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_37 .hf-card-content-inner {
  
  border-color: #E7E7E7;
  
}
#hf_stacks_in_37.hf-v .hf-top .hf-gfx-lyr1 div {
  background-color: #E834A0;
  
}
#hf_stacks_in_37.hf-v .hf-top .hf-gfx-lyr2 div {
  background-color: #B6297E;
  
}

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

#hf_stacks_in_37.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bdr div,
#hf_stacks_in_37.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bdr div {
  
  
  background-color: #E7E7E7;
  
  
}
#hf_stacks_in_37.hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
#hf_stacks_in_37.hf-v .hf-bottom .hf-gfx-lyr1 div {
  background-color: #E834A0;
  
}
#hf_stacks_in_37.hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
#hf_stacks_in_37.hf-v .hf-bottom .hf-gfx-lyr2 div {
  background-color: #B6297E;
  
}

#hf_stacks_in_37.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  padding: 12px 24px;
}
#hf_stacks_in_37.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  padding: 12px 24px;
}
#hf_stacks_in_37.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_37.hf-detached:not(.hf-no-content) .hf-card-footer {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_37.hf-v .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_37.hf-v .hf-top .hf-gfx-lyr2 {
  left: calc(var(--hf-lyrOffset) * 2);
  right: calc(var(--hf-lyrOffset) * 2);
}
#hf_stacks_in_37.hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_37.hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
#hf_stacks_in_37.hf-v .hf-bottom .hf-gfx-lyr1,
#hf_stacks_in_37.hf-v .hf-top .hf-gfx-lyr1 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_38 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_38 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_38 svg  */

#stacks_in_38 svg,
#stacks_in_38 i {
  color: rgba(85, 85, 85, 1.00);
  fill: rgba(85, 85, 85, 1.00);
  stroke: rgba(85, 85, 85, 1.00);
}

#stacks_in_38 i,
#stacks_in_38 svg {
  position: relative;
  font-size: 40px;
  line-height: 40px;
  height: 40px;
  width: 40px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_38 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_38 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_38 .material-icons-two-tone {
  color: rgba(85, 85, 85, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(85, 85, 85, 1.00),
              0px -.1px 0px rgba(85, 85, 85, 1.00),
              .1px 0px 0px rgba(85, 85, 85, 1.00),
              -.1px 0px 0px rgba(85, 85, 85, 1.00);
}
#stacks_in_38 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
:root {
  --multi_columns_stacks_in_43:min-content 1fr;
}
#multi_columns_stacks_in_43 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_43);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_43 > div {
  min-width: 0;
}
#multi_columns_stacks_in_43 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_43 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_43 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_47 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_47 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_47 svg  */

#stacks_in_47 svg,
#stacks_in_47 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_47 i,
#stacks_in_47 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_47 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_47 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_47 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_47 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_44[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

:root {
  --multi_columns_stacks_in_61:min-content 1fr;
}
#multi_columns_stacks_in_61 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_61);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_61 > div {
  min-width: 0;
}
#multi_columns_stacks_in_61 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_61 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_61 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_65 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_65 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_65 svg  */

#stacks_in_65 svg,
#stacks_in_65 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_65 i,
#stacks_in_65 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_65 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_65 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_65 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_65 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_62[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

:root {
  --multi_columns_stacks_in_55:min-content 1fr;
}
#multi_columns_stacks_in_55 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_55);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_55 > div {
  min-width: 0;
}
#multi_columns_stacks_in_55 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_55 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_55 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_59 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_59 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_59 svg  */

#stacks_in_59 svg,
#stacks_in_59 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_59 i,
#stacks_in_59 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_59 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_59 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_59 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_59 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_56[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

:root {
  --multi_columns_stacks_in_49:min-content 1fr;
}
#multi_columns_stacks_in_49 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_49);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_49 > div {
  min-width: 0;
}
#multi_columns_stacks_in_49 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_49 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_49 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_53 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_53 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_53 svg  */

#stacks_in_53 svg,
#stacks_in_53 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_53 i,
#stacks_in_53 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_53 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_53 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_53 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_53 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_50[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

.hf-cards #hf_stacks_in_68 {
  --hf-bdrSize: 4px;
	--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_68.hf2-split .hf-card-header > div {
  
  
}
#hf_stacks_in_68.hf-split .hf-card-footer > div {
  
  
}
#hf_stacks_in_68.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_68.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_68.hf-v.hf2-split .hf-card-content-inner > .hf-grad {
  padding-top: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_68.hf-v.hf-split .hf-card-content-inner > .hf-grad {
  padding-bottom: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_68 .hf-card-content-inner {
  
  border-color: #E7E7E7;
  
}
#hf_stacks_in_68.hf-v .hf-top .hf-gfx-lyr1 div {
  background-color: #E834A0;
  
}
#hf_stacks_in_68.hf-v .hf-top .hf-gfx-lyr2 div {
  background-color: #B6297E;
  
}

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

#hf_stacks_in_68.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bdr div,
#hf_stacks_in_68.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bdr div {
  
  
  background-color: #E7E7E7;
  
  
}
#hf_stacks_in_68.hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
#hf_stacks_in_68.hf-v .hf-bottom .hf-gfx-lyr1 div {
  background-color: #E834A0;
  
}
#hf_stacks_in_68.hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
#hf_stacks_in_68.hf-v .hf-bottom .hf-gfx-lyr2 div {
  background-color: #B6297E;
  
}

#hf_stacks_in_68.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  padding: 12px 24px;
}
#hf_stacks_in_68.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  padding: 12px 24px;
}
#hf_stacks_in_68.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_68.hf-detached:not(.hf-no-content) .hf-card-footer {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_68.hf-v .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_68.hf-v .hf-top .hf-gfx-lyr2 {
  left: calc(var(--hf-lyrOffset) * 2);
  right: calc(var(--hf-lyrOffset) * 2);
}
#hf_stacks_in_68.hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_68.hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
#hf_stacks_in_68.hf-v .hf-bottom .hf-gfx-lyr1,
#hf_stacks_in_68.hf-v .hf-top .hf-gfx-lyr1 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_69 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_69 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_69 svg  */

#stacks_in_69 svg,
#stacks_in_69 i {
  color: rgba(85, 85, 85, 1.00);
  fill: rgba(85, 85, 85, 1.00);
  stroke: rgba(85, 85, 85, 1.00);
}

#stacks_in_69 i,
#stacks_in_69 svg {
  position: relative;
  font-size: 40px;
  line-height: 40px;
  height: 40px;
  width: 40px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_69 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_69 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_69 .material-icons-two-tone {
  color: rgba(85, 85, 85, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(85, 85, 85, 1.00),
              0px -.1px 0px rgba(85, 85, 85, 1.00),
              .1px 0px 0px rgba(85, 85, 85, 1.00),
              -.1px 0px 0px rgba(85, 85, 85, 1.00);
}
#stacks_in_69 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
:root {
  --multi_columns_stacks_in_268:min-content 1fr;
}
#multi_columns_stacks_in_268 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_268);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_268 > div {
  min-width: 0;
}
#multi_columns_stacks_in_268 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_268 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_268 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_272 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_272 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_272 svg  */

#stacks_in_272 svg,
#stacks_in_272 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_272 i,
#stacks_in_272 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_272 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_272 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_272 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_272 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_269[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

:root {
  --multi_columns_stacks_in_74:min-content 1fr;
}
#multi_columns_stacks_in_74 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_74);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_74 > div {
  min-width: 0;
}
#multi_columns_stacks_in_74 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_74 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_74 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_78 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_78 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_78 svg  */

#stacks_in_78 svg,
#stacks_in_78 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_78 i,
#stacks_in_78 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_78 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_78 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_78 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_78 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_75[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

:root {
  --multi_columns_stacks_in_80:min-content 1fr;
}
#multi_columns_stacks_in_80 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_80);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_80 > div {
  min-width: 0;
}
#multi_columns_stacks_in_80 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_80 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_80 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_84 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_84 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_84 svg  */

#stacks_in_84 svg,
#stacks_in_84 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_84 i,
#stacks_in_84 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_84 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_84 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_84 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_84 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_81[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

:root {
  --multi_columns_stacks_in_86:min-content 1fr;
}
#multi_columns_stacks_in_86 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_86);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_86 > div {
  min-width: 0;
}
#multi_columns_stacks_in_86 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_86 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_86 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_90 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_90 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_90 svg  */

#stacks_in_90 svg,
#stacks_in_90 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_90 i,
#stacks_in_90 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_90 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_90 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_90 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_90 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_87[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

.hf-cards #hf_stacks_in_99 {
  --hf-bdrSize: 4px;
	--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_99.hf2-split .hf-card-header > div {
  
  
}
#hf_stacks_in_99.hf-split .hf-card-footer > div {
  
  
}
#hf_stacks_in_99.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_99.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_99.hf-v.hf2-split .hf-card-content-inner > .hf-grad {
  padding-top: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_99.hf-v.hf-split .hf-card-content-inner > .hf-grad {
  padding-bottom: calc(96px/2 - var(--hf-bdrSize));
}
#hf_stacks_in_99 .hf-card-content-inner {
  
  border-color: #E7E7E7;
  
}
#hf_stacks_in_99.hf-v .hf-top .hf-gfx-lyr1 div {
  background-color: #E834A0;
  
}
#hf_stacks_in_99.hf-v .hf-top .hf-gfx-lyr2 div {
  background-color: #B6297E;
  
}

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

#hf_stacks_in_99.hf-v:not(.hf2-no-point) .hf-top .hf-gfx-bdr div,
#hf_stacks_in_99.hf-v:not(.hf-no-point) .hf-bottom .hf-gfx-bdr div {
  
  
  background-color: #E7E7E7;
  
  
}
#hf_stacks_in_99.hf-v.hf2-no-point .hf-top .hf-gfx-lyr1 div,
#hf_stacks_in_99.hf-v .hf-bottom .hf-gfx-lyr1 div {
  background-color: #E834A0;
  
}
#hf_stacks_in_99.hf-v.hf2-no-point .hf-top .hf-gfx-lyr2 div,
#hf_stacks_in_99.hf-v .hf-bottom .hf-gfx-lyr2 div {
  background-color: #B6297E;
  
}

#hf_stacks_in_99.hf2-detached:not(.hf2-no-content) .hf-card-header > div {
  padding: 12px 24px;
}
#hf_stacks_in_99.hf-detached:not(.hf-no-content) .hf-card-footer > div {
  padding: 12px 24px;
}
#hf_stacks_in_99.hf2-detached:not(.hf2-no-content) .hf-card-header {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_99.hf-detached:not(.hf-no-content) .hf-card-footer {
  padding-left: var(--hf-lyrOffset);
  padding-right: var(--hf-lyrOffset);
}
#hf_stacks_in_99.hf-v .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_99.hf-v .hf-top .hf-gfx-lyr2 {
  left: calc(var(--hf-lyrOffset) * 2);
  right: calc(var(--hf-lyrOffset) * 2);
}
#hf_stacks_in_99.hf-v.hf-angle-alt .hf-bottom .hf-gfx-lyr2,
#hf_stacks_in_99.hf-v.hf2-angle-alt .hf-top .hf-gfx-lyr2 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
#hf_stacks_in_99.hf-v .hf-bottom .hf-gfx-lyr1,
#hf_stacks_in_99.hf-v .hf-top .hf-gfx-lyr1 {
  left: var(--hf-lyrOffset);
  right: var(--hf-lyrOffset);
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_100 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_100 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_100 svg  */

#stacks_in_100 svg,
#stacks_in_100 i {
  color: rgba(85, 85, 85, 1.00);
  fill: rgba(85, 85, 85, 1.00);
  stroke: rgba(85, 85, 85, 1.00);
}

#stacks_in_100 i,
#stacks_in_100 svg {
  position: relative;
  font-size: 40px;
  line-height: 40px;
  height: 40px;
  width: 40px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_100 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_100 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_100 .material-icons-two-tone {
  color: rgba(85, 85, 85, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(85, 85, 85, 1.00),
              0px -.1px 0px rgba(85, 85, 85, 1.00),
              .1px 0px 0px rgba(85, 85, 85, 1.00),
              -.1px 0px 0px rgba(85, 85, 85, 1.00);
}
#stacks_in_100 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
:root {
  --multi_columns_stacks_in_111:min-content 1fr;
}
#multi_columns_stacks_in_111 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_111);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_111 > div {
  min-width: 0;
}
#multi_columns_stacks_in_111 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_111 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_111 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_115 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_115 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_115 svg  */

#stacks_in_115 svg,
#stacks_in_115 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_115 i,
#stacks_in_115 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_115 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_115 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_115 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_115 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_112[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

:root {
  --multi_columns_stacks_in_274:min-content 1fr;
}
#multi_columns_stacks_in_274 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_274);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_274 > div {
  min-width: 0;
}
#multi_columns_stacks_in_274 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_274 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_274 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_278 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_278 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_278 svg  */

#stacks_in_278 svg,
#stacks_in_278 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_278 i,
#stacks_in_278 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_278 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_278 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_278 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_278 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_275[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

:root {
  --multi_columns_stacks_in_105:min-content 1fr;
}
#multi_columns_stacks_in_105 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_105);
  grid-gap: 12px;
  
  align-items: center;
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_105 > div {
  min-width: 0;
}
#multi_columns_stacks_in_105 + .deluxe-columns {
  margin-top: 12px;
}
#multi_columns_stacks_in_105 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_105 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


/*
1.1.0.1
- fixed bug with ionicons when set to outlined
*/
#stacks_in_109 {
  user-select: none;
}
/* *:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_109 i,
*:not(a) > *:not(a) > *:not(a) > *:not(a) > *:not(a) > #stacks_in_109 svg  */

#stacks_in_109 svg,
#stacks_in_109 i {
  color: rgba(0, 0, 0, 1.00);
  fill: rgba(0, 0, 0, 1.00);
  stroke: rgba(0, 0, 0, 1.00);
}

#stacks_in_109 i,
#stacks_in_109 svg {
  position: relative;
  font-size: 26px;
  line-height: 26px;
  height: 26px;
  width: 26px;
  display: block;
  text-align: center;
  
  
}
#stacks_in_109 .icon-helper-two-tone-wrap {
  position: relative;
  display: block;
}
#stacks_in_109 .icon-helper-two-tone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  fill: rgba(204, 204, 204, 1.00);
  stroke: rgba(204, 204, 204, 1.00);
  color: rgba(204, 204, 204, 1.00);
}
#stacks_in_109 .material-icons-two-tone {
  color: rgba(0, 0, 0, 1.00);
  font-family: 'Material Icons Outlined';
  z-index: 1;
  position: relative;
  text-shadow: 0px .1px 0px rgba(0, 0, 0, 1.00),
              0px -.1px 0px rgba(0, 0, 0, 1.00),
              .1px 0px 0px rgba(0, 0, 0, 1.00),
              -.1px 0px 0px rgba(0, 0, 0, 1.00);
}
#stacks_in_109 i.material-icons-two-tone:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: attr(data-content);
  color: rgba(204, 204, 204, 1.00);
  font-family: 'Material Icons';
}
.element_stacks_in_106[data-deluxe-el][data-deluxe-text] {
  color: rgba(0, 0, 0, 1.00);
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  
  
}

#stacks_in_302>.s3_row {
	margin: 0 -10px;
}

#stacks_in_302>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_302>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_302>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_302>.s3_row>.s3_column {
	padding: 0 10px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_302>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_302>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}



#stacks_in_131_button {
	display:block;
	position: relative;
	text-align: center;
}


#stacks_in_131 a:link, #stacks_in_131 a:visited {
	 display:inline-block; 
	
	
	position: relative;
	text-decoration:none;
}
#stacks_in_131 a:hover, #stacks_in_131 a:active {
	color:#FFFFFF;
}







#stacks_in_131 a:link, #stacks_in_131 a:visited {
	background-color:#00A5FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A5FF), to(#0063BF));
	border:1px solid #0063BF;
	padding:3px 20px;
	border-radius:30px;
	color:#FFFFFF;
	box-shadow:rgba(0, 0, 0, 0.5) 0px 1px 2px;
	margin:5px;
	font-weight:bold;
}
#stacks_in_131 a:hover {
	background-color:#00B2FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00B2FF), to(#0055A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_131 a:active {
	background-color:#00A5FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#stacks_in_306_button {
	display:block;
	position: relative;
	text-align: center;
}


#stacks_in_306 a:link, #stacks_in_306 a:visited {
	 display:inline-block; 
	
	
	position: relative;
	text-decoration:none;
}
#stacks_in_306 a:hover, #stacks_in_306 a:active {
	color:#FFFFFF;
}







#stacks_in_306 a:link, #stacks_in_306 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	padding:3px 20px;
	border-radius:30px;
	color:#FFFFFF;
	box-shadow:rgba(0, 0, 0, 0.5) 0px 1px 2px;
	margin:5px;
	font-weight:bold;
}
#stacks_in_306 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_306 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



#stacks_in_308_button {
	display:block;
	position: relative;
	text-align: center;
}


#stacks_in_308 a:link, #stacks_in_308 a:visited {
	 display:inline-block; 
	
	
	position: relative;
	text-decoration:none;
}
#stacks_in_308 a:hover, #stacks_in_308 a:active {
	color:#FFFFFF;
}







#stacks_in_308 a:link, #stacks_in_308 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	padding:3px 20px;
	border-radius:30px;
	color:#FFFFFF;
	box-shadow:rgba(0, 0, 0, 0.5) 0px 1px 2px;
	margin:5px;
	font-weight:bold;
}
#stacks_in_308 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_308 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}




.spacerStack {
	height: 15.00px;
}

#spacerStackstacks_in_310_14 {
	height: 15.00px;
}




















@media print {
	#spacerStackstacks_in_310_14 {
		display: none !important;
	}
}

#stacks_in_310_4 {
	background-color: rgba(204, 204, 204, 1.00);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}

#stacks_in_310_8 {
	background-color: rgba(204, 204, 202, 1.00);
	margin:  5px;
	padding:  15px;
}
/* Start Stats stack CSS code */.stacks_in_7stats, .stacks_in_7pagetitle{	display: none;}.stacks_in_7instructwrapper{	position: relative;	background: url("../files/newstatsbg.png") repeat-x;	height: 100px;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;}.stacks_in_7instruct{	position: absolute;	text-align: center;	bottom: 0px;	left: 0px;	right: 0px;	color: #fff;	font-weight: bold;	font-family: Arial, Helvetica, sans-serif;	background: rgba(0, 0, 0, 0.6);	padding: 4px 10px 5px 10px;} /* End if record mode */ /* End if admin mode *//* End Stats stack CSS code */