/*
 * foundry animation
 */

@keyframes fdy-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fdy-fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInTopLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInTopRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInBottomLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-fadeInBottomRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fdy-flip-in-hor {
	0% {
		transform: rotateX(80deg);
		opacity: 0;
	}
	100% {
		transform: rotateX(0);
		opacity: 1;
	}
}

@keyframes fdy-flip-in-ver {
	0% {
		transform: rotateY(-80deg);
		opacity: 0;
	}
	100% {
		transform: rotateY(0);
		opacity: 1;
	}
}

@keyframes fdy-scale-in-center {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes fdy-scale-in-top {
	0% {
		transform: scale(0);
		transform-origin: 50% 0%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 50% 0%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-bottom {
	0% {
		transform: scale(0);
		transform-origin: 50% 100%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 50% 100%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-left {
	0% {
		transform: scale(0);
		transform-origin: 0% 50%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 0% 50%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-right {
	0% {
		transform: scale(0);
		transform-origin: 100% 50%;
		opacity: 0;
	}
	100% {
		transform: scale(1);
		transform-origin: 100% 50%;
		opacity: 1;
	}
}

@keyframes fdy-scale-in-ver-center {
	0% {
		transform: scaleY(0);
		opacity: 0;
	}
	100% {
		transform: scaleY(1);
		opacity: 1;
	}
}

@keyframes fdy-scale-in-hor-center {
	0% {
		transform: scaleX(0);
		opacity: 0;
	}
	100% {
		transform: scaleX(1);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-center {
	0% {
		transform: rotate(-360deg);
		opacity: 0;
	}
	100% {
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-top {
	0% {
		transform: rotate(-360deg);
		transform-origin: top;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: top;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-bottom {
	0% {
		transform: rotate(-360deg);
		transform-origin: bottom;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: bottom;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-left {
	0% {
		transform: rotate(-360deg);
		transform-origin: left;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: left;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-right {
	0% {
		transform: rotate(-360deg);
		transform-origin: right;
		opacity: 0;
	}
	100% {
		transform: rotate(0deg);
		transform-origin: right;
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-hor {
	0% {
		transform: rotateX(360deg);
		opacity: 0;
	}
	100% {
		transform: rotateX(0deg);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-ver {
	0% {
		transform: rotateY(-360deg);
		opacity: 0;
	}
	100% {
		transform: rotateY(0deg);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-cw {
	0% {
		transform: rotate(-45deg);
		opacity: 0;
	}
	100% {
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-ccw {
	0% {
		transform: rotate(45deg);
		opacity: 0;
	}
	100% {
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-fwd-cw {
	0% {
		transform: scale(0.5) rotate(-45deg);
		opacity: 0;
	}
	100% {
		transform: scale(1) rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-rotate-in-subtle-fwd-ccw {
	0% {
		transform: scale(0.5) rotate(45deg);
		opacity: 0;
	}
	100% {
		transform: scale(1) rotate(0);
		opacity: 1;
	}
}

@keyframes fdy-swirl-in-fwd {
	0% {
		transform: rotate(-540deg) scale(0);
		opacity: 0;
	}
	100% {
		transform: rotate(0) scale(1);
		opacity: 1;
	}
}

@keyframes fdy-swirl-in-bck {
	0% {
		transform: rotate(540deg) scale(5);
		opacity: 0;
	}
	100% {
		transform: rotate(0) scale(1);
		opacity: 1;
	}
}

@keyframes fdy-slit-in-vertical {
	0% {
		transform: scale(0.25) rotateY(90deg);
		opacity: 0;
	}
	40% {
		transform: scale(0.85) rotateY(88deg);
		opacity: 1;
	}
	100% {
		transform: scale(1) translateZ(0) rotateY(0);
	}
}

@keyframes fdy-slit-in-horizontal {
	0% {
		transform: scale(0.25) rotateX(90deg);
		opacity: 0;
	}
	40% {
		transform: scale(0.85) rotateX(88deg);
		opacity: 1;
	}
	100% {
		transform: scale(1) translateZ(0) rotateX(0);
	}
}

@keyframes fdy-puff-in-center {
	0% {
		transform: scale(2);
		filter: blur(4px);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		filter: blur(0px);
		opacity: 1;
	}
}

@keyframes fdy-slide-in-bck-center {
	0% {
		transform: scale(6);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes fdy-bounce-in-top {
	0% {
		transform: translateY(-500px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateY(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateY(-65px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateY(-28px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateY(-8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-bottom {
	0% {
		transform: translateY(500px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateY(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateY(65px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateY(28px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateY(8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateY(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-left {
	0% {
		transform: translateX(-600px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateX(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateX(-68px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateX(-28px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateX(-8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-right {
	0% {
		transform: translateX(600px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: translateX(0);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: translateX(68px);
		animation-timing-function: ease-in;
	}
	72% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	81% {
		transform: translateX(32px);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
	95% {
		transform: translateX(8px);
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-fwd {
	0% {
		transform: scale(0);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: scale(1);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: scale(0.7);
		animation-timing-function: ease-in;
	}
	72% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	81% {
		transform: scale(0.84);
		animation-timing-function: ease-in;
	}
	89% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	95% {
		transform: scale(0.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-bounce-in-bck {
	0% {
		transform: scale(7);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	38% {
		transform: scale(1);
		animation-timing-function: ease-out;
		opacity: 1;
	}
	55% {
		transform: scale(1.5);
		animation-timing-function: ease-in;
	}
	72% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	81% {
		transform: scale(1.24);
		animation-timing-function: ease-in;
	}
	89% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
	95% {
		transform: scale(1.04);
		animation-timing-function: ease-in;
	}
	100% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-roll-in-top {
	0% {
		transform: translateY(-800px) rotate(-540deg);
		opacity: 0;
	}
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-roll-in-bottom {
	0% {
		transform: translateY(800px) rotate(540deg);
		opacity: 0;
	}
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-roll-in-left {
	0% {
		transform: translateX(-800px) rotate(-540deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-roll-in-right {
	0% {
		transform: translateX(800px) rotate(540deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fdy-wobble-hor-bottom {
	0%, 100% {
		transform: translateX(0%);
		transform-origin: 50% 50%;
	}
	15% {
		transform: translateX(-30px) rotate(-6deg);
	}
	30% {
		transform: translateX(15px) rotate(6deg);
	}
	45% {
		transform: translateX(-15px) rotate(-3.6deg);
	}
	60% {
		transform: translateX(9px) rotate(2.4deg);
	}
	75% {
		transform: translateX(-6px) rotate(-1.2deg);
	}
}

@keyframes fdy-wobble-hor-top {
	0%, 100% {
		transform: translateX(0%);
		transform-origin: 50% 50%;
	}
	15% {
		transform: translateX(-30px) rotate(6deg);
	}
	30% {
		transform: translateX(15px) rotate(-6deg);
	}
	45% {
		transform: translateX(-15px) rotate(3.6deg);
	}
	60% {
		transform: translateX(9px) rotate(-2.4deg);
	}
	75% {
		transform: translateX(-6px) rotate(1.2deg);
	}
}

@keyframes fdy-jello-horizontal {
	0% {
		transform: scale3d(1, 1, 1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}

@keyframes fdy-jello-vertical {
	0% {
		transform: scale3d(1, 1, 1);
	}
	30% {
		transform: scale3d(0.75, 1.25, 1);
	}
	40% {
		transform: scale3d(1.25, 0.75, 1);
	}
	50% {
		transform: scale3d(0.85, 1.15, 1);
	}
	65% {
		transform: scale3d(1.05, 0.95, 1);
	}
	75% {
		transform: scale3d(0.95, 1.05, 1);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}

@keyframes fdy-jello-diagonal {
	0% {
		transform: skew(0deg 0deg);
	}
	30% {
		transform: skew(25deg 25deg);
	}
	40% {
		transform: skew(-15deg, -15deg);
	}
	50% {
		transform: skew(15deg, 15deg);
	}
	65% {
		transform: skew(-5deg, -5deg);
	}
	75% {
		transform: skew(5deg, 5deg);
	}
	100% {
		transform: skew(0deg 0deg);
	}
}

@keyframes fdy-heartbeat {
	from {
		transform: scale(1);
		transform-origin: center center;
		animation-timing-function: ease-out;
	}
	10% {
		transform: scale(0.91);
		animation-timing-function: ease-in;
	}
	17% {
		transform: scale(0.98);
		animation-timing-function: ease-out;
	}
	33% {
		transform: scale(0.87);
		animation-timing-function: ease-in;
	}
	45% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

@keyframes fdy-shake-horizontal {
	0%, 100% {
		transform: translateX(0);
	}
	10%, 30%, 50%, 70% {
		transform: translateX(-10px);
	}
	20%, 40%, 60% {
		transform: translateX(10px);
	}
	80% {
		transform: translateX(8px);
	}
	90% {
		transform: translateX(-8px);
	}
}

@keyframes fdy-shake-vertical {
	0%, 100% {
		transform: translateY(0);
	}
	10%, 30%, 50%, 70% {
		transform: translateY(-8px);
	}
	20%, 40%, 60% {
		transform: translateY(8px);
	}
	80% {
		transform: translateY(6.4px);
	}
	90% {
		transform: translateY(-6.4px);
	}
}

@keyframes fdy-shake-bottom {
	0%, 100% {
		transform: rotate(0deg);
		transform-origin: 50% 100%;
	}
	10% {
		transform: rotate(2deg);
	}
	20%, 40%, 60% {
		transform: rotate(-4deg);
	}
	30%, 50%, 70% {
		transform: rotate(4deg);
	}
	80% {
		transform: rotate(-2deg);
	}
	90% {
		transform: rotate(2deg);
	}
}

@keyframes fdy-shake-top {
	0%, 100% {
		transform: rotate(0deg);
		transform-origin: 50% 0;
	}
	10% {
		transform: rotate(2deg);
	}
	20%, 40%, 60% {
		transform: rotate(-4deg);
	}
	30%, 50%, 70% {
		transform: rotate(4deg);
	}
	80% {
		transform: rotate(-2deg);
	}
	90% {
		transform: rotate(2deg);
	}
}

@keyframes fdy-subtle-bounce-top {
	0% {
		transform: translateY(-45px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateY(-24px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateY(-12px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateY(-6px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateY(-4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-bounce-bottom {
	0% {
		transform: translateY(45px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateY(24px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateY(12px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateY(6px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateY(4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateY(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-bounce-left {
	0% {
		transform: translateX(-48px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateX(-26px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateX(-13px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateX(-6.5px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateX(-4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87%, 98% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-bounce-right {
	0% {
		transform: translateX(48px);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	24% {
		opacity: 1;
	}
	40% {
		transform: translateX(26px);
		animation-timing-function: ease-in;
	}
	65% {
		transform: translateX(13px);
		animation-timing-function: ease-in;
	}
	82% {
		transform: translateX(6.5px);
		animation-timing-function: ease-in;
	}
	93% {
		transform: translateX(4px);
		animation-timing-function: ease-in;
	}
	25%, 55%, 75%, 87%, 98% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
	}
	100% {
		transform: translateX(0px);
		animation-timing-function: ease-out;
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-top {
	0% {
		transform: translateY(-50px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-right {
	0% {
		transform: translateX(50px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-left {
	0% {
		transform: translateX(-50px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fdy-subtle-fade-in-bottom {
	0% {
		transform: translateY(50px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}


 .read-more{position:relative;overflow:hidden;padding-bottom:1rem}.read-more__btn{margin-bottom:0;cursor:pointer;transition:all .2s ease 0s;max-width:100%}.read-more__content{overflow:hidden;transition:height .3s;padding-bottom:20px}.read-more__footer{position:absolute;left:0;width:100%}.read-more__footer:before{content:'';display:block;position:absolute;width:100%;left:0;transition:opacity .3s}.read-more.is-active .read-more__footer:before{opacity:0;pointer-events:none}.moreish-link{background:none;border:none;padding:0;font:inherit}/* TRIGGER FONT */

@font-face {
  font-family: 'trigger';
  src: url('../files/trigger_font/trigger.eot?57958819');
  src: url('../files/trigger_font/trigger.eot?57958819#iefix') format('embedded-opentype'),
       url('../files/trigger_font/trigger.woff?57958819') format('woff'),
       url('../files/trigger_font/trigger.ttf?57958819') format('truetype'),
       url('../files/trigger_font/trigger.svg?57958819#trigger') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'trigger';
    src: url('../font/trigger.svg?60643705#trigger') format('svg');
  }
}
*/

 
 [class^="trigger-"]:before, [class*=" trigger-"]:before {
  font-family: "trigger";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
     
  /* fix buttons height, for twitter bootstrap */
  /*line-height: 1em;*/
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  /*margin-left: .2em;*/
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.trigger-plus-squared:before { content: '\e800'; } /* '' */
.trigger-minus-squared:before { content: '\e801'; } /* '' */
.trigger-plus-squared-alt:before { content: '\e802'; } /* '' */
.trigger-minus-squared-alt:before { content: '\e803'; } /* '' */
.trigger-cancel-1:before { content: '\e804'; } /* '' */
.trigger-ok:before { content: '\e805'; } /* '' */
.trigger-ok-circled:before { content: '\e806'; } /* '' */
.trigger-cancel-circled:before { content: '\e807'; } /* '' */
.trigger-ok-circled2:before { content: '\e808'; } /* '' */
.trigger-cancel-circled2:before { content: '\e809'; } /* '' */
.trigger-ok-squared:before { content: '\e80a'; } /* '' */
.trigger-plus-circled:before { content: '\e80b'; } /* '' */
.trigger-minus-circled:before { content: '\e80c'; } /* '' */
.trigger-toggle-off:before { content: '\e80d'; } /* '' */
.trigger-toggle-on:before { content: '\e80e'; } /* '' */
.trigger-cog:before { content: '\e80f'; } /* '' */
.trigger-info-circled:before { content: '\e810'; } /* '' */
.trigger-help-circled:before { content: '\e811'; } /* '' */
.trigger-eye:before { content: '\e812'; } /* '' */
.trigger-eye-off:before { content: '\e813'; } /* '' */
.trigger-code-1:before { content: '\e814'; } /* '' */
.trigger-chat:before { content: '\e815'; } /* '' */
.trigger-chat-empty:before { content: '\e816'; } /* '' */
.trigger-down-open-1:before { content: '\e817'; } /* '' */
.trigger-up-open-1:before { content: '\e818'; } /* '' */
.trigger-star:before { content: '\e819'; } /* '' */
.trigger-star-empty:before { content: '\e81a'; } /* '' */
.trigger-heart:before { content: '\e81b'; } /* '' */
.trigger-heart-empty:before { content: '\e81c'; } /* '' */
.trigger-plus-1:before { content: '\e81d'; } /* '' */
.trigger-minus-1:before { content: '\e81e'; } /* '' */
.trigger-help-1:before { content: '\e81f'; } /* '' */
.trigger-info-1:before { content: '\e820'; } /* '' */
.trigger-mail:before { content: '\e821'; } /* '' */
.trigger-mail-squared:before { content: '\e822'; } /* '' */
.trigger-export-alt:before { content: '\e823'; } /* '' */
.trigger-export:before { content: '\e824'; } /* '' */
.trigger-menu-1:before { content: '\e825'; } /* '' */.blu-svg>.svg-link>a{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:999}

 .image-compare{position:relative;display:flex}.image-compare-content{position:absolute;z-index:20}.image-compare .no-pointer{pointer-events:none;}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}






/* 
 ______                    _            
|  ____|                  | |           
| |__ ___  _   _ _ __   __| |_ __ _   _ 
|  __/ _ \| | | | '_ \ / _` | '__| | | |
| | | (_) | |_| | | | | (_| | |  | |_| |
|_|  \___/ \__,_|_| |_|\__,_|_|   \__, |
								   __/ |
								  |___/ 

Version: 3.2024.01.17
Copyright Elixir Graphics 2006-2023
More Info: https://foundry.elixirgraphics.com
  Support: https://elixir.support

*/ 




/* Hack to get rid of margin-left and margin-right being set to AUTO by Stacks */
.stacks_out {
	margin-left: initial;
	margin-right: initial;
}


/* Preview & Publish */
:root {
	   --fdy-base-margin-xs: 1.25rem;
	   --fdy-base-margin-sm: 1.25rem;
	   --fdy-base-margin-md: 1.25rem;
	   --fdy-base-margin-lg: 1.25rem;
	   --fdy-base-margin-xl: 1.25rem;
	  --fdy-base-margin-xxl: 1.25rem;
}

* {
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
}
/* End Preview & Publish */

	


/* All Modes */

/* Remove overflow from the Stacks stacks_top class */
.stacks_top {
	overflow: initial !important;
}


/* Foundry - Custom Classes */
/* Shadows & Text Shadows */
.fdy-shadow {
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-multi {
  box-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.2), 0 0.4rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.fdy-shadow-wide,
.fdy-shadow-wide-hover:hover {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
}

.fdy-shadow-shallow-1 {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px !important;
}

.fdy-shadow-shallow-2 {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important;
}

.fdy-shadow-shallow-3 {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.fdy-shadow-floating {
	box-shadow: rgba(0, 0, 0, 0.55) 0px 15px 10px -10px !important;
}

.fdy-shadow-smooth {
	box-shadow: 0 1px 1px rgba(0,0,0,0.12), 
	  0 2px 2px rgba(0,0,0,0.12), 
	  0 4px 4px rgba(0,0,0,0.12), 
	  0 8px 8px rgba(0,0,0,0.12),
	  0 16px 16px rgba(0,0,0,0.12) !important;
}

.fdy-user-preset-shadow,
.fdy-user-preset-shadow-hover:hover {
	box-shadow: 0px 5px 10px -1px rgba(0, 0, 0, 0.50);
}

.fdy-no-shadow-hover:hover {
	box-shadow: 0 0 0 0 rgba(0,0,0,0.0) !important;
}

.fdy-shadow-hover:hover {
	box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-sm-hover:hover {
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-shadow-multi-hover:hover {
	box-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.2), 0 0.4rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.fdy-shadow-wide-hover:hover {	
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
}

.fdy-shadow-shallow-1-hover:hover {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px !important;
}

.fdy-shadow-shallow-2-hover:hover {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px !important;
}

.fdy-shadow-shallow-3-hover:hover {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.fdy-shadow-floating-hover:hover {
	box-shadow: rgba(0, 0, 0, 0.55) 0px 15px 10px -10px !important;
}

.fdy-shadow-smooth-hover:hover {
	box-shadow: 0 1px 1px rgba(0,0,0,0.12), 
	  0 2px 2px rgba(0,0,0,0.12), 
	  0 4px 4px rgba(0,0,0,0.12), 
	  0 8px 8px rgba(0,0,0,0.12),
	  0 16px 16px rgba(0,0,0,0.12) !important;
}

.fdy-control-center-small-shadow {
	box-shadow: 0 1px 3px rgba(0,0,0,0.17);  
}

.fdy-text-shadow {
  text-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-text-shadow-sm {
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.fdy-text-shadow-multi {
  text-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.2), 0 0.4rem 1rem rgba(0, 0, 0, 0.2) !important;
}

.fdy-text-shadow-wide {
	text-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
}

.fdy-text-shadow-shallow-1 {
	text-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px, rgba(0, 0, 0, 0.3) 0px 3px 7px !important;
}

.fdy-text-shadow-shallow-2 {
	text-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px rgba(60, 64, 67, 0.15) !important;
}

.fdy-text-shadow-shallow-3 {
	text-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.fdy-text-shadow-floating {
	text-shadow: rgba(0, 0, 0, 0.55) 0px 15px 15px !important;
}

.fdy-text-shadow-smooth {
	text-shadow: 0 1px 1px rgba(0,0,0,0.12), 
	  0 2px 2px rgba(0,0,0,0.12), 
	  0 4px 4px rgba(0,0,0,0.12), 
	  0 8px 8px rgba(0,0,0,0.12),
	  0 16px 16px rgba(0,0,0,0.12) !important;
}

.fdy-text-user-preset-shadow {
	text-shadow: 0px 5px 10px  rgba(0, 0, 0, 0.50);
}

.shadow-none,
.shadow-none-hover:hover {
	box-shadow: none !important;
}

:root {
	--fdy-transparent: transparent;
	
		--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	
	--bs-body-font-size: 1.00rem;
	--bs-body-line-height: 1.50;
	--bs-body-font-weight: 400;

	
	--bs-body-color: var(--bs-dark);
	
	
}


/* Helper Classes */

.img-100-pct {
  width: 100%;
  height: auto;
}

.fdy-bg-transparent {
	background: var(--fdy-transparent);
}

.fdy-bg-white {
	background: #ffffff;
}

.fdy-translate-middle-end {
	transform: translate(-100%,-50%) !important;
}

.fdy-translate-middle-start {
	transform: translate(0%,-50%) !important;
}

.fdy-pointer-events-none {
	pointer-events: none;
}

.fdy-dropdown-menu-start {
	left: 0 !important;
	right: initial !important;
}

.fdy-dropdown-menu-end {
	right: 0 !important;
	left: initial !important;
}


/* List Group Classes */
.list-group-item.disabled-link {
  pointer-events: none;
}
	
/* Hide box-shadow at each breakpoint */
@media (max-width: 575px) {
	.fdy-hide-shadow-xs {
		box-shadow: none !important;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.fdy-hide-shadow-sm {
		box-shadow: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.fdy-hide-shadow-md {
		box-shadow: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.fdy-hide-shadow-lg {
		box-shadow: none !important;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.fdy-hide-shadow-xl {
		box-shadow: none !important;
	}
}

@media (min-width: 1400px) {
	.fdy-hide-shadow-xxl {
		box-shadow: none !important;
	}
}
	


/* Custom padding classes for x-axis */
@media (max-width: 575px) {
	.fdy-px-xs-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.fdy-px-sm-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.fdy-px-md-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.fdy-px-lg-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.fdy-px-xl-0 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 1400px) {
	.fdy-px-xxl-0 {
		padding-left: 0;
		padding-right: 0;
	}
}


/* Card Group Class Helper for Container stack */
.fdy-card-group {
	display: flex;
	flex-flow: row wrap;
}

.fdy-card-group > .card {
	flex: 1 0 0%;
	margin-bottom: 0;
}

.fdy-card-group > .card + .card {
	margin-left: 0 !important;
	border-left: 0 !important;
}

.fdy-card-group > .card:not(:last-child) .card-img-top .fdy-img,
.fdy-card-group > .card:not(:last-child) {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.fdy-card-group > .card:not(:first-child) {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.fdy-card-group > .card:not(:first-child) .card-img-top .fdy-img,
.fdy-card-group > .card:not(:first-child) .card-header {
	border-top-left-radius: 0 !important;
}



/* Custom Header Settings */

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-weight: 700;
  
  line-height: 1.20;
  
  
	
	color: inherit;
	
	
}





















.lead {
  line-height: 1.50;
  font-weight: 300;
}



mark, 
.mark {
	
	
}

kbd, 
.kbd {
	
	
}



a, 
a:hover {
	
	color: var(--bs-primary);
	
	
	
	
	
	
	text-decoration-color: transparent;
	
}

a:hover {
	
	color: var(--bs-success);
	
	


	
	
	
	text-decoration-color: transparent;
	
}



	body {
		background-position: center center;
		
		

		
		background-size: cover;
		background-repeat: no-repeat;
		
		
		

	}	

	
	
	body {
		background: var(--bs-white);
	}
	
	
	
	
	
	
	


	

	









/* Translates our Foundry preset colors to standard classes */

/* Border Color */
.border-primary {
	border-color: var(--bs-primary) !important;
}

.border-secondary {
	border-color: var(--bs-secondary) !important;
}

.border-success {
	border-color: var(--bs-success) !important;
}

.border-danger {
	border-color: var(--bs-danger) !important;
}

.border-warning {
	border-color: var(--bs-warning) !important;
}

.border-info {
	border-color: var(--bs-info) !important;
}


/* Text Color */
.text-primary {
	color: var(--bs-primary) !important;
}

.text-secondary {
	color: var(--bs-secondary) !important;
}

.text-success {
	color: var(--bs-success) !important;
}

.text-danger {
	color: var(--bs-danger) !important;
}

.text-warning {
	color: var(--bs-warning) !important;
}

.text-info {
	color: var(--bs-info) !important;
}


/* Background */
.bg-primary {
	background-color: var(--bs-primary) !important;
}

.bg-secondary {
	background-color: var(--bs-secondary) !important;
}

.bg-success {
	background-color: var(--bs-success) !important;
}

.bg-danger {
	background-color: var(--bs-danger) !important;
}

.bg-warning {
	background-color: var(--bs-warning) !important;
}

.bg-info {
	background-color: var(--bs-info) !important;
}

.btn-close {
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
}

.btn-close-white {
  filter: var(--bs-btn-close-white-filter);
}


.fdy-border-1 {
  border-width: 1px !important;
}

.fdy-border-2 {
  border-width: 2px !important;
}

.fdy-border-3 {
  border-width: 3px !important;
}

.fdy-border-4 {
  border-width: 4px !important;
}

.fdy-border-5 {
  border-width: 5px !important;
}
/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../files/fa-fonts/fa-brands-400.eot");
  src: url("../files/fa-fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../files/fa-fonts/fa-brands-400.woff2") format("woff2"), url("../files/fa-fonts/fa-brands-400.woff") format("woff"), url("../files/fa-fonts/fa-brands-400.ttf") format("truetype"), url("../files/fa-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 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../files/fa-fonts/fa-regular-400.eot");
  src: url("../files/fa-fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../files/fa-fonts/fa-regular-400.woff2") format("woff2"), url("../files/fa-fonts/fa-regular-400.woff") format("woff"), url("../files/fa-fonts/fa-regular-400.ttf") format("truetype"), url("../files/fa-fonts/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../files/fa-fonts/fa-solid-900.eot");
  src: url("../files/fa-fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../files/fa-fonts/fa-solid-900.woff2") format("woff2"), url("../files/fa-fonts/fa-solid-900.woff") format("woff"), url("../files/fa-fonts/fa-solid-900.ttf") format("truetype"), url("../files/fa-fonts/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }



:root { 
  --bs-primary: #0D4BA1;
  --bs-secondary: #4B7E25;
  --bs-success: #FFF40A;
  --bs-danger: #FF0000;
  --bs-warning: #EDF6FF;
  --bs-info: #89A6D0;
}





	
	 
	.white-background  {

		

		
		
		

		
			/* Background Color */
			background-color: var(--bs-white) ;
		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.justify-text  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		
			/* Text Alignment */
			text-align: justify  !important;
		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:           !important;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	p  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		
			/* Text Decoration */
			text-decoration-line: none  !important; 
			text-decoration-style: solid  !important; 
			text-decoration-thickness: 1.00px  !important;
			text-decoration-color: var(--bs-primary)  !important;
		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:           !important;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.line-through p  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		
			/* Text Decoration */
			text-decoration-line: line-through  !important; 
			text-decoration-style: solid  !important; 
			text-decoration-thickness: 4.00px  !important;
			text-decoration-color: var(--bs-danger)  !important;
		

		
			text-underline-offset: 2.00px;
		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:      rotate(5.00deg)     !important;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.gray-background-border  {

		

		
		
		

		
			/* Background Color */
			background-color: rgba(244, 244, 245, 1.00) ;
		

		

		

		
			

		
		

		
			/* Border */
			/* Border Width */
			 
			border-width: 1px ;
			
		
			
			
			/* Border Style */
			 
			border-style: solid ;
			
			
			
			
			/* Border Color */
			
		
			
		
			 
			border-color: var(--bs-gray-500) ;
			
		
		
		
			/* Border Radius */
			
			border-radius: 7px ;
			
		
			
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.carpet-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 20px 0px rgba(116, 73, 47, 0.50)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.carpet-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(95, 56, 35, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.carpet-2-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(255, 244, 10, 1.00)  !important;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:           !important;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.air-duct-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(255, 0, 0, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.air-duct-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(255, 0, 0, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.upholstery-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(55, 58, 60, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.upholstery-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(55, 58, 60, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.hover-wow-photos:hover  {

		

		
		
		

		

		

		

		
			

		
		

		
			/* Border */
			/* Border Width */
			 
			border-width: 3px ;
			
		
			
			
			/* Border Style */
			 
			border-style: solid ;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(255, 138, 0, 1.00) ;
			
		
			
		
			
		
		
		
			/* Border Radius */
			
			border-radius: 10px ;
			
		
			
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(255, 138, 0, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.wow-photos-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(255, 138, 0, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.wow-photos-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(255, 138, 0, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.dryer-vent-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(17, 0, 237, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.dryer-vent-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(17, 0, 237, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.mattress-c-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(94, 21, 17, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.mattress-c-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(94, 21, 17, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.mattress-s-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(106, 0, 254, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.mattress-s-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(106, 0, 254, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.hardwood-floor-c-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(180, 119, 60, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.hardwood-floor-c-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(180, 119, 60, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.pet-odor-removal-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(209, 171, 8, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.pet-odor-removal-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(209, 171, 8, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.spot-removal-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(219, 107, 95, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.spot-removal-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(219, 107, 95, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.commercial-carpet-c-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(203, 67, 25, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.commercial-carpet-c-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(203, 67, 25, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */











	
	 
	.disinfecting-and-sanitizing-boxshadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(37, 173, 0, 1.00)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.disinfecting-and-sanitizing-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: rgba(37, 173, 0, 1.00) ;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.border-right  {

		

		
		
		

		

		

		

		
			

		
		

		
			/* Border */
			/* Border Width */
			
		
			 
			border-top-width: 0px  !important;
			border-bottom-width: 0px  !important;
			border-left-width: 0px  !important;
			border-right-width: 2px  !important;
			
			
			/* Border Style */
			 
			border-style: solid  !important;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(0, 0, 0, 0.15)  !important;
			
		
			
		
			
		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:           !important;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.h3-color  {

		

		
		
		

		

		

		

		
			

		
		
			/* Color */
			color: var(--bs-success)  !important;
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
			/* Font Weight */
			font-weight: 700  !important;
		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:           !important;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.box-shadow  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		
			/* Box Shadow */
			box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.30)   ;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.4sannity-nav-bar-blur  {

		

		
		
			/* Backdrop Filter */
			-webkit-backdrop-filter: blur(10px)        ;
			backdrop-filter: blur(10px)        ;
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.word-space  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:          ;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.box-shadow2  {

		

		
		
		

		

		

		

		
			

		
		

		
			/* Border */
			/* Border Width */
			 
			border-width: 1px  !important;
			
		
			
			
			/* Border Style */
			 
			border-style: solid  !important;
			
			
			
			
			/* Border Color */
			
		
			
		
			 
			border-color: var(--bs-light)  !important;
			
		
		
		
			/* Border Radius */
			
			border-radius: 5px  !important;
			
		
			
		
		
		
			/* Box Shadow */
			box-shadow: 0px 10px 25px 0px rgba(204, 204, 204, 1.00)    !important;
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		

		

		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:           !important;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */








	
	 
	.link_color_white  {

		

		
		
		

		

		

		

		
			

		
		

		
		
		
		
		

		

		

		

		

		
		
		
		
		

		
		
		
		
		

		
		
		
			/* Text Shadow */
			text-shadow: 2px 2px 2px rgba(255, 255, 255, 1.00)    !important;
		

		

		
			/* Text Decoration */
			text-decoration-line: underline  !important; 
			text-decoration-style: solid  !important; 
			text-decoration-thickness: 1.00px  !important;
			text-decoration-color: var(--bs-white)  !important;
		

		
		
				

		/* Properties that should only be applied in Preview Mode / Published Page */
		
		

		


		

		

		

		/* Transform */
		transform:           !important;
		
		

		
		
		

		
		
		
	}
	



/* Background Image - Retina */














  /* LOAD LOCAL FONTS */
  
    /* Thin - Normal */
    @font-face {
        font-family: 'Dexapro';
        src: url('../') format('woff2');
        font-weight: 100;
        font-style: normal;
        
    }
  

  


  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Dexapro';
        src: url('../resources/Fonts/Dexapro/dexapro-400-regular-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Dexapro';
        src: url('../resources/Fonts/Dexapro/dexapro-400-regular-italic-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Dexapro';
        src: url('../resources/Fonts/Dexapro/dexapro-700-bold-webfont.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  

  


  
    /* Black - Normal */
    @font-face {
        font-family: 'Dexapro';
        src: url('../resources/Fonts/Dexapro/dexapro-900-black-webfont.woff2') format('woff2');
        font-weight: 900;
        font-style: normal;
        
    }
  

  
  /* End Font Loading */


  

    .foundry-typeface-one {
      font-family: 'Dexapro', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-one strong {
      font-weight: 700;
    }

    .foundry-typeface-one strong em,
    .foundry-typeface-one em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-one em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-one-page-wide-headers h1,
    body.foundry-typeface-one-page-wide-headers h2,
    body.foundry-typeface-one-page-wide-headers h3,
    body.foundry-typeface-one-page-wide-headers h4,
    body.foundry-typeface-one-page-wide-headers h5,
    body.foundry-typeface-one-page-wide-headers h6 {
      font-family: 'Dexapro', sans-serif;
    }

    h1.foundry-typeface-one,
    h2.foundry-typeface-one,
    h3.foundry-typeface-one,
    h4.foundry-typeface-one,
    h5.foundry-typeface-one,
    h6.foundry-typeface-one {
      font-family: 'Dexapro', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  
    /* Thin - Normal */
    @font-face {
        font-family: 'Neufreit';
        src: url('../') format('woff2');
        font-weight: 100;
        font-style: normal;
        
    }
  

  


  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Neufreit';
        src: url('../resources/Fonts/Neufreit/neufreit-regular-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Neufreit';
        src: url('../resources/Fonts/Neufreit/neufreit-italic-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Neufreit';
        src: url('../resources/Fonts/Neufreit/neufreit-bold-webfont.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  
    /* Heavy - Normal */
    @font-face {
        font-family: 'Neufreit';
        src: url('../resources/Fonts/Neufreit/neufreit-extrabold-webfont.woff2') format('woff2');
        font-weight: 800;
        font-style: normal;
        
    }
  

  


  
    /* Black - Normal */
    @font-face {
        font-family: 'Neufreit';
        src: url('../resources/Fonts/Neufreit/neufreit-heavy-webfont.woff2') format('woff2');
        font-weight: 900;
        font-style: normal;
        
    }
  

  
  /* End Font Loading */


  

    .foundry-typeface-two {
      font-family: 'Neufreit', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-two strong {
      font-weight: 700;
    }

    .foundry-typeface-two strong em,
    .foundry-typeface-two em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-two em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-two-page-wide-headers h1,
    body.foundry-typeface-two-page-wide-headers h2,
    body.foundry-typeface-two-page-wide-headers h3,
    body.foundry-typeface-two-page-wide-headers h4,
    body.foundry-typeface-two-page-wide-headers h5,
    body.foundry-typeface-two-page-wide-headers h6 {
      font-family: 'Neufreit', sans-serif;
    }

    h1.foundry-typeface-two,
    h2.foundry-typeface-two,
    h3.foundry-typeface-two,
    h4.foundry-typeface-two,
    h5.foundry-typeface-two,
    h6.foundry-typeface-two {
      font-family: 'Neufreit', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  
    /* Thin - Normal */
    @font-face {
        font-family: 'Creo';
        src: url('../') format('woff2');
        font-weight: 100;
        font-style: normal;
        
    }
  

  


  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Creo';
        src: url('../resources/Fonts/Creo/creo-regular-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Creo';
        src: url('../resources/Fonts/Creo/creo-italic-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Creo';
        src: url('../resources/Fonts/Creo/creo-bold-webfont.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  

  


  
    /* Black - Normal */
    @font-face {
        font-family: 'Creo';
        src: url('../resources/Fonts/Creo/creo-black-webfont.woff2') format('woff2');
        font-weight: 900;
        font-style: normal;
        
    }
  

  
  /* End Font Loading */


  

    .foundry-typeface-three {
      font-family: 'Creo', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-three strong {
      font-weight: 700;
    }

    .foundry-typeface-three strong em,
    .foundry-typeface-three em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-three em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-three-page-wide-headers h1,
    body.foundry-typeface-three-page-wide-headers h2,
    body.foundry-typeface-three-page-wide-headers h3,
    body.foundry-typeface-three-page-wide-headers h4,
    body.foundry-typeface-three-page-wide-headers h5,
    body.foundry-typeface-three-page-wide-headers h6 {
      font-family: 'Creo', sans-serif;
    }

    h1.foundry-typeface-three,
    h2.foundry-typeface-three,
    h3.foundry-typeface-three,
    h4.foundry-typeface-three,
    h5.foundry-typeface-three,
    h6.foundry-typeface-three {
      font-family: 'Creo', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  

  


  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Caldina';
        src: url('../resources/Fonts/Caldina/caldina-400-regular-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Caldina';
        src: url('../resources/Fonts/Caldina/caldina-400-regular-italic-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Caldina';
        src: url('../resources/Fonts/Caldina/caldina-700-bold-webfont.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  

  


  

  
  /* End Font Loading */


  

    .foundry-typeface-four {
      font-family: 'Caldina', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-four strong {
      font-weight: 700;
    }

    .foundry-typeface-four strong em,
    .foundry-typeface-four em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-four em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-four-page-wide-headers h1,
    body.foundry-typeface-four-page-wide-headers h2,
    body.foundry-typeface-four-page-wide-headers h3,
    body.foundry-typeface-four-page-wide-headers h4,
    body.foundry-typeface-four-page-wide-headers h5,
    body.foundry-typeface-four-page-wide-headers h6 {
      font-family: 'Caldina', sans-serif;
    }

    h1.foundry-typeface-four,
    h2.foundry-typeface-four,
    h3.foundry-typeface-four,
    h4.foundry-typeface-four,
    h5.foundry-typeface-four,
    h6.foundry-typeface-four {
      font-family: 'Caldina', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  

  


  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Morn';
        src: url('../resources/Fonts/Morn/morn-regular-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Morn';
        src: url('../') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Morn';
        src: url('../resources/Fonts/Morn/morn-bold-webfont.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  

  


  
    /* Black - Normal */
    @font-face {
        font-family: 'Morn';
        src: url('../') format('woff2');
        font-weight: 900;
        font-style: normal;
        
    }
  

  
  /* End Font Loading */


  

    .foundry-typeface-five {
      font-family: 'Morn', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-five strong {
      font-weight: 700;
    }

    .foundry-typeface-five strong em,
    .foundry-typeface-five em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-five em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-five-page-wide-headers h1,
    body.foundry-typeface-five-page-wide-headers h2,
    body.foundry-typeface-five-page-wide-headers h3,
    body.foundry-typeface-five-page-wide-headers h4,
    body.foundry-typeface-five-page-wide-headers h5,
    body.foundry-typeface-five-page-wide-headers h6 {
      font-family: 'Morn', sans-serif;
    }

    h1.foundry-typeface-five,
    h2.foundry-typeface-five,
    h3.foundry-typeface-five,
    h4.foundry-typeface-five,
    h5.foundry-typeface-five,
    h6.foundry-typeface-five {
      font-family: 'Morn', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  
    /* Thin - Normal */
    @font-face {
        font-family: 'Laro';
        src: url('../') format('woff2');
        font-weight: 100;
        font-style: normal;
        
    }
  

  


  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Laro';
        src: url('../resources/Fonts/Laro/laro-regular-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Laro';
        src: url('../resources/Fonts/Laro/laro-regularitalic-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Laro';
        src: url('../resources/Fonts/Laro/laro-bold-webfont.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  

  


  
    /* Black - Normal */
    @font-face {
        font-family: 'Laro';
        src: url('../resources/Fonts/Laro/laro-black-webfont.woff2') format('woff2');
        font-weight: 900;
        font-style: normal;
        
    }
  

  
  /* End Font Loading */


  

    .foundry-typeface-six {
      font-family: 'Laro', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-six strong {
      font-weight: 700;
    }

    .foundry-typeface-six strong em,
    .foundry-typeface-six em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-six em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-six-page-wide-headers h1,
    body.foundry-typeface-six-page-wide-headers h2,
    body.foundry-typeface-six-page-wide-headers h3,
    body.foundry-typeface-six-page-wide-headers h4,
    body.foundry-typeface-six-page-wide-headers h5,
    body.foundry-typeface-six-page-wide-headers h6 {
      font-family: 'Laro', sans-serif;
    }

    h1.foundry-typeface-six,
    h2.foundry-typeface-six,
    h3.foundry-typeface-six,
    h4.foundry-typeface-six,
    h5.foundry-typeface-six,
    h6.foundry-typeface-six {
      font-family: 'Laro', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  

  


  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Hebrew Seals';
        src: url('../resources/Fonts/hebrew-seals/hebrew_seals-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  


  

  


  

  


  

  


  

  


  

  
  /* End Font Loading */


  

    .foundry-typeface-seven {
      font-family: 'Hebrew Seals', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-seven strong {
      font-weight: 700;
    }

    .foundry-typeface-seven strong em,
    .foundry-typeface-seven em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-seven em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-seven-page-wide-headers h1,
    body.foundry-typeface-seven-page-wide-headers h2,
    body.foundry-typeface-seven-page-wide-headers h3,
    body.foundry-typeface-seven-page-wide-headers h4,
    body.foundry-typeface-seven-page-wide-headers h5,
    body.foundry-typeface-seven-page-wide-headers h6 {
      font-family: 'Hebrew Seals', sans-serif;
    }

    h1.foundry-typeface-seven,
    h2.foundry-typeface-seven,
    h3.foundry-typeface-seven,
    h4.foundry-typeface-seven,
    h5.foundry-typeface-seven,
    h6.foundry-typeface-seven {
      font-family: 'Hebrew Seals', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  
    /* Thin - Normal */
    @font-face {
        font-family: 'Kelpt';
        src: url('../') format('woff2');
        font-weight: 100;
        font-style: normal;
        
    }
  

  


  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Kelpt';
        src: url('../') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Kelpt';
        src: url('../') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Kelpt';
        src: url('../') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  

  


  
    /* Black - Normal */
    @font-face {
        font-family: 'Kelpt';
        src: url('../') format('woff2');
        font-weight: 900;
        font-style: normal;
        
    }
  

  
  /* End Font Loading */


  

    .foundry-typeface-eight {
      font-family: 'Kelpt', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-eight strong {
      font-weight: 700;
    }

    .foundry-typeface-eight strong em,
    .foundry-typeface-eight em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-eight em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-eight-page-wide-headers h1,
    body.foundry-typeface-eight-page-wide-headers h2,
    body.foundry-typeface-eight-page-wide-headers h3,
    body.foundry-typeface-eight-page-wide-headers h4,
    body.foundry-typeface-eight-page-wide-headers h5,
    body.foundry-typeface-eight-page-wide-headers h6 {
      font-family: 'Kelpt', sans-serif;
    }

    h1.foundry-typeface-eight,
    h2.foundry-typeface-eight,
    h3.foundry-typeface-eight,
    h4.foundry-typeface-eight,
    h5.foundry-typeface-eight,
    h6.foundry-typeface-eight {
      font-family: 'Kelpt', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  

  


  
    /* Ultra Light - Normal */
    @font-face {
        font-family: 'Darwin';
        src: url('../') format('woff2');
        font-weight: 200;
        font-style: normal;
        
    }
  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Darwin';
        src: url('../') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Darwin';
        src: url('../') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Darwin';
        src: url('../') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  

  


  
    /* Black - Normal */
    @font-face {
        font-family: 'Darwin';
        src: url('../') format('woff2');
        font-weight: 900;
        font-style: normal;
        
    }
  

  
  /* End Font Loading */


  

    .foundry-typeface-nine {
      font-family: 'Darwin', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-nine strong {
      font-weight: 700;
    }

    .foundry-typeface-nine strong em,
    .foundry-typeface-nine em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-nine em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-nine-page-wide-headers h1,
    body.foundry-typeface-nine-page-wide-headers h2,
    body.foundry-typeface-nine-page-wide-headers h3,
    body.foundry-typeface-nine-page-wide-headers h4,
    body.foundry-typeface-nine-page-wide-headers h5,
    body.foundry-typeface-nine-page-wide-headers h6 {
      font-family: 'Darwin', sans-serif;
    }

    h1.foundry-typeface-nine,
    h2.foundry-typeface-nine,
    h3.foundry-typeface-nine,
    h4.foundry-typeface-nine,
    h5.foundry-typeface-nine,
    h6.foundry-typeface-nine {
      font-family: 'Darwin', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  
    /* Thin - Normal */
    @font-face {
        font-family: 'Amelia';
        src: url('../') format('woff2');
        font-weight: 100;
        font-style: normal;
        
    }
  

  


  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Amelia';
        src: url('../resources/Fonts/Amelia/amelia-basic-regular-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Amelia';
        src: url('../resources/Fonts/Amelia/amelia-basic-regular-italic-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Amelia';
        src: url('../resources/Fonts/Amelia/amelia-basic-bold-webfont.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  

  


  
    /* Black - Normal */
    @font-face {
        font-family: 'Amelia';
        src: url('../resources/Fonts/Amelia/amelia-basic-black-webfont.woff2') format('woff2');
        font-weight: 900;
        font-style: normal;
        
    }
  

  
  /* End Font Loading */


  

    .foundry-typeface-ten {
      font-family: 'Amelia', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-ten strong {
      font-weight: 700;
    }

    .foundry-typeface-ten strong em,
    .foundry-typeface-ten em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-ten em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-ten-page-wide-headers h1,
    body.foundry-typeface-ten-page-wide-headers h2,
    body.foundry-typeface-ten-page-wide-headers h3,
    body.foundry-typeface-ten-page-wide-headers h4,
    body.foundry-typeface-ten-page-wide-headers h5,
    body.foundry-typeface-ten-page-wide-headers h6 {
      font-family: 'Amelia', sans-serif;
    }

    h1.foundry-typeface-ten,
    h2.foundry-typeface-ten,
    h3.foundry-typeface-ten,
    h4.foundry-typeface-ten,
    h5.foundry-typeface-ten,
    h6.foundry-typeface-ten {
      font-family: 'Amelia', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  

  


  

  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Habanera';
        src: url('../resources/Fonts/Habanera/habanera-400-regular-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  
    /* Normal - Italic */
    @font-face {
        font-family: 'Habanera';
        src: url('../resources/Fonts/Habanera/habanera-400-regular-talic-webfont.woff2') format('woff2');
        font-weight: 400;
        font-style: italic;
        
    }
  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Habanera';
        src: url('../resources/Fonts/Habanera/habanera-700-bold-webfont.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  

  


  

  
  /* End Font Loading */


  

    .foundry-typeface-eleven {
      font-family: 'Habanera', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-eleven strong {
      font-weight: 700;
    }

    .foundry-typeface-eleven strong em,
    .foundry-typeface-eleven em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-eleven em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-eleven-page-wide-headers h1,
    body.foundry-typeface-eleven-page-wide-headers h2,
    body.foundry-typeface-eleven-page-wide-headers h3,
    body.foundry-typeface-eleven-page-wide-headers h4,
    body.foundry-typeface-eleven-page-wide-headers h5,
    body.foundry-typeface-eleven-page-wide-headers h6 {
      font-family: 'Habanera', sans-serif;
    }

    h1.foundry-typeface-eleven,
    h2.foundry-typeface-eleven,
    h3.foundry-typeface-eleven,
    h4.foundry-typeface-eleven,
    h5.foundry-typeface-eleven,
    h6.foundry-typeface-eleven {
      font-family: 'Habanera', sans-serif !important;
    }

  







  /* LOAD LOCAL FONTS */
  
    /* Thin - Normal */
    @font-face {
        font-family: 'Grold';
        src: url('../') format('woff2');
        font-weight: 100;
        font-style: normal;
        
    }
  

  


  
    /* Ultra Light - Normal */
    @font-face {
        font-family: 'Grold';
        src: url('../') format('woff2');
        font-weight: 200;
        font-style: normal;
        
    }
  

  
    /* Ultra Light - Italic */
    @font-face {
        font-family: 'Grold';
        src: url('../') format('woff2');
        font-weight: 200;
        font-style: italic;
        
    }
  


  

  


  
    /* Normal - Normal */
    @font-face {
        font-family: 'Grold';
        src: url('../') format('woff2');
        font-weight: 400;
        font-style: normal;
        
    }
  

  


  

  


  

  


  
     /* Bold - Normal */
    @font-face {
        font-family: 'Grold';
        src: url('../') format('woff2');
        font-weight: 700;
        font-style: normal;
        
    }
  

  


  

  


  
    /* Black - Normal */
    @font-face {
        font-family: 'Grold';
        src: url('../') format('woff2');
        font-weight: 900;
        font-style: normal;
        
    }
  

  
  /* End Font Loading */


  

    .foundry-typeface-twelve {
      font-family: 'Grold', sans-serif;
      font-weight: 400;
    }

    .foundry-typeface-twelve strong {
      font-weight: 700;
    }

    .foundry-typeface-twelve strong em,
    .foundry-typeface-twelve em strong {
      font-weight: 700;
      font-style: italic;
    }

    .foundry-typeface-twelve em {
      font-weight: 400;
      font-style: italic;
    }

    body.foundry-typeface-twelve-page-wide-headers h1,
    body.foundry-typeface-twelve-page-wide-headers h2,
    body.foundry-typeface-twelve-page-wide-headers h3,
    body.foundry-typeface-twelve-page-wide-headers h4,
    body.foundry-typeface-twelve-page-wide-headers h5,
    body.foundry-typeface-twelve-page-wide-headers h6 {
      font-family: 'Grold', sans-serif;
    }

    h1.foundry-typeface-twelve,
    h2.foundry-typeface-twelve,
    h3.foundry-typeface-twelve,
    h4.foundry-typeface-twelve,
    h5.foundry-typeface-twelve,
    h6.foundry-typeface-twelve {
      font-family: 'Grold', sans-serif !important;
    }

  







#stacks_in_8922-transition {
	
	background: var(--bs-white);
	
	
	
	
	align-items: center;
	display: flex;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 999999;
	pointer-events: none !important;
}

.transition-animation {
	opacity: 0;
}


.stacks_in_8922-transition-animation {
	animation-name: fdy-slide-in-bck-center;
	animation-duration: 1.00s;
	animation-fill-mode: both;
	animation-delay: 0.2s;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.stacks_in_8922-transition-animation-reverse {
	animation-name: fdy-fadeIn;
	animation-duration: 0.800000s;
	animation-fill-mode: both;
	animation-direction: reverse;
}

#stacks_in_8922-transition .spinner-border {
	width: 4rem;
	height: 4rem;
}

.spinner-border {
	

	
	color: rgba(79, 182, 197, 1.00);
	
}






.stacks_in_3466-container {
	
	
	

	
	
	

}








#stacks_in_8885-wrapper,
#stacks_in_8885-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_8885-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_8885-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_8885-wrapper {
	background-position: center center;
}


#stacks_in_8885-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_8885-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_8885-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_8885-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_8885-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_8885-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_8885-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_8885-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_8885-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_8885-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_8885-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_8885-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_8885-wrapper.bkg-gradient-two {
	background: rgba(12, 97, 176, 1.00);
	background: linear-gradient(0deg, rgba(12, 97, 176, 1.00) 0%, rgba(13, 75, 161, 1.00) 100%);
}

#stacks_in_8885-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_8885-wrapper.custom-corners,
#stacks_in_8885-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_8885-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_8885-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_8885-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_8885-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_8885-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_8886-wrapper {
	
}

#stacks_in_8886-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_8886-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_8886-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_8886-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_8886-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_8888-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8888-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8888-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8888-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8888-margins.padding-advanced {
		padding: 2.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_8890-wrapper .col {
		
	}
	
}




	.col.stacks_in_8892-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




div.stacks_in_8894-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

div.stacks_in_8894-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



div.stacks_in_8894-header {
	margin-bottom: 0;
}






.stacks_in_8894-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_8894-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8894-header {
		font-size: 1.70rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8894-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8894-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8894-header {
		font-size: 2.00rem;
	}
}



#stacks_in_8897-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8897-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8897-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8897-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8897-margins.padding-advanced {
		padding: 0.50rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8898-wrapper {
	
	
	
		
		
		color: var(--bs-success);
		
	
}







#stacks_in_8898-wrapper {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_8898-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_8898-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_8898-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8898-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8898-wrapper {
		font-size: 1.00rem;
	}
}



	#stacks_in_8898-wrapper p:last-of-type {
		margin-bottom: 0;
	}






	.col.stacks_in_8901-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




#stacks_in_8902-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8902-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_8902-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8902-margins.padding-advanced {
	padding: 0.00rem 4.00rem 0.00rem 4.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8902-margins.padding-advanced {
		padding: 0.00rem 3.00rem 0.00rem 3.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_8902-margins.padding-advanced {
		padding: 0.00rem 4.00rem 0.00rem 4.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_8904-wrapper,
#stacks_in_8904-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_8904-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_8904-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_8904-wrapper {
	background-position: center center;
}


#stacks_in_8904-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_8904-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_8904-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_8904-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_8904-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_8904-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_8904-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_8904-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_8904-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_8904-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_8904-wrapper.bkg-preset {
	background: var(--bs-primary);
}

#stacks_in_8904-wrapper.bkg-solid-color {
	background: rgba(250, 124, 128, 1.00);
}

#stacks_in_8904-wrapper.bkg-gradient-two {
	background: rgba(255, 237, 71, 0.75);
	background: linear-gradient(235deg, rgba(255, 237, 71, 0.75) 0%, rgba(66, 165, 248, 1.00) 100%);
}

#stacks_in_8904-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_8904-wrapper.custom-corners,
#stacks_in_8904-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_8904-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_8904-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_8904-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_8904-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_8904-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_8906-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8906-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_8906-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8906-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8906-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



div.stacks_in_8908-header {
	
	font-weight: 900;
	
	
	
	
	font-size: 1.50rem;
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

div.stacks_in_8908-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



div.stacks_in_8908-header {
	margin-bottom: 0;
}







#stacks_in_3454-wrapper,
#stacks_in_3454-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_3454-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_3454-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_3454-wrapper {
	background-position: center center;
}


#stacks_in_3454-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_3454-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_3454-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_3454-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_3454-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_3454-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_3454-wrapper.bkg-image {
	background-image: url(../files/drag-and-drop-img-3454.jpg);
}



@media only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {

	#stacks_in_3454-wrapper.bkg-image {
		background-image: url(../files/drag-and-drop-retina-img-3454.jpg);
	}

}




#stacks_in_3454-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_3454-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_3454-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_3454-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_3454-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_3454-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_3454-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_3454-wrapper.custom-corners,
#stacks_in_3454-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_3454-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_3454-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.65);
}


#stacks_in_3454-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_3454-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_3454-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_3376-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3376-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3376-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3376-margins.padding-advanced {
	padding: 5.00rem 0.00rem 5.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3376-margins.padding-advanced {
		padding: 5.00rem 0.00rem 10.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_3376-margins.padding-advanced {
		padding: 13.00rem 0.00rem 12.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_3378-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_3382-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3382-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3382-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3382-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h1.stacks_in_3384-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h1.stacks_in_3384-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h1.stacks_in_3384-header {
	margin-bottom: 0;
}






.stacks_in_3384-header {
	font-size: 1.85rem;
}

@media (min-width: 576px) {
	.stacks_in_3384-header {
		font-size: 1.85rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_3384-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_3384-header {
		font-size: 2.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3384-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3384-header {
		font-size: 3.00rem;
	}
}







#stacks_in_3390-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3390-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3390-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3390-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3390-margins.padding-advanced {
		padding: 0.00rem 3.00rem 0.00rem 3.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3392-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}







#stacks_in_3392-wrapper {
	font-size: 1.10rem;
}

@media (min-width: 576px) {
	#stacks_in_3392-wrapper {
		font-size: 1.10rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_3392-wrapper {
		font-size: 1.10rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_3392-wrapper {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_3392-wrapper {
		font-size: 1.50rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_3392-wrapper {
		font-size: 1.50rem;
	}
}



	#stacks_in_3392-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_3399-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3399-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3399-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3399-margins.padding-advanced {
	padding: 1.00rem 0.00rem 3.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3399-margins.padding-advanced {
		padding: 1.00rem 0.00rem 5.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


.stacks_in_3400-button,
.stacks_in_3400-button:focus {
	
}




.stacks_in_3400-button,
.stacks_in_3400-button:focus {
	background: rgba(13, 75, 161, 1.00);
	border-color: rgba(137, 166, 208, 1.00);
	color: rgba(255, 237, 71, 1.00);
	outline: none;
}


.stacks_in_3400-button:hover {
	background: rgba(137, 166, 208, 1.00) !important;
	border-color: rgba(13, 75, 161, 1.00) !important;
	color: rgba(13, 75, 161, 1.00) !important;
}










#stacks_in_3400-wrapper a {
	outline: none;
}

#stacks_in_3400-wrapper .btn {
	
	font-weight: 700;
	
	
}



#stacks_in_3400-wrapper .btn.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3400-wrapper .btn,
#stacks_in_3400-wrapper .btn.custom-shadow,
#stacks_in_3400-wrapper .btn.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3400-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}














#stacks_in_3468-wrapper {
	
}

#stacks_in_3468-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_3468-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_3468-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_3468-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_3468-wrapper.fdy-container {
	max-width: 960px;
  }
}











@media (max-width: 575px) {
	
	#stacks_in_3456-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_3403-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3403-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3403-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3403-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3403-margins.padding-advanced {
		padding: 0.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_3403-margins.padding-advanced {
		padding: 0.00rem 6.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3405-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(219, 240, 255, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}









#stacks_in_3407-wrapper {
	font-weight: 400;
}

/* Add a little space after numbers for numbered items */
#stacks_in_3407-wrapper.list-group-numbered > li::before {
	margin-right: 5px;
}



#stacks_in_3407-wrapper {
  --bs-accordion-color: #000;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}






/* Plus & Close */
#stacks_in_3407-wrapper .accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(219, 240, 255, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
}

#stacks_in_3407-wrapper .accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(46, 49, 53, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
	transform: rotate(135deg);
}

#stacks_in_3407-wrapper .list-group-item:hover.accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(192, 195, 195, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
}

#stacks_in_3407-wrapper .list-group-item:hover.accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(192, 195, 195, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
	transform: rotate(135deg);
}








#stacks_in_3407-wrapper .list-group-item {
	color: rgba(219, 240, 255, 1.00);
	
	
	background-color: rgba(65, 115, 33, 1.00);
	

	
	
	border-color: rgba(225, 230, 225, 0.00);
	
}

#stacks_in_3407-wrapper .list-group-item:hover,
#stacks_in_3407-wrapper .list-group-item.active {
	color: rgba(192, 195, 195, 1.00) !important;
	
	
	background-color: rgba(222, 226, 230, 0.00) !important;
	
} 

#stacks_in_3407-wrapper .accordion-button:not(.collapsed) {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-200) !important;
	
	
	
	box-shadow: inset 0px -1px 0px 0px var(--bs-gray-300) !important;
	
	
} 

#stacks_in_3407-wrapper .accordion-collapse .list-group-item {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-100);
	
	
	
}

#stacks_in_3407-wrapper .accordion-collapse .item-inner-wrapper {
	
	padding-left: 12px;
	
}


#stacks_in_3407-wrapper.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_3407-wrapper.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3407-wrapper,
#stacks_in_3407-wrapper.custom-shadow,
#stacks_in_3407-wrapper.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}



.stacks_in_3409-fdy-item .item-label {
	font-weight: 700;
}

.stacks_in_3409-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_3409-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_3409-fdy-item .list-group-icons {
		
}

.stacks_in_3409-fdy-item:hover .list-group-icons {
		
}





#stacks_in_3411-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3411-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3411-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3411-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3411-margins.padding-advanced {
		padding: 0.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_3411-margins.padding-advanced {
		padding: 0.00rem 6.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3412-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(219, 240, 255, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}









#stacks_in_3414-wrapper {
	font-weight: 400;
}

/* Add a little space after numbers for numbered items */
#stacks_in_3414-wrapper.list-group-numbered > li::before {
	margin-right: 5px;
}



#stacks_in_3414-wrapper {
  --bs-accordion-color: #000;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}






/* Plus & Close */
#stacks_in_3414-wrapper .accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(219, 240, 255, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
}

#stacks_in_3414-wrapper .accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(46, 49, 53, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
	transform: rotate(135deg);
}

#stacks_in_3414-wrapper .list-group-item:hover.accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(192, 195, 195, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
}

#stacks_in_3414-wrapper .list-group-item:hover.accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(192, 195, 195, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
	transform: rotate(135deg);
}








#stacks_in_3414-wrapper .list-group-item {
	color: rgba(219, 240, 255, 1.00);
	
	
	background-color: rgba(65, 115, 33, 1.00);
	

	
	
	border-color: rgba(225, 230, 225, 0.00);
	
}

#stacks_in_3414-wrapper .list-group-item:hover,
#stacks_in_3414-wrapper .list-group-item.active {
	color: rgba(192, 195, 195, 1.00) !important;
	
	
	background-color: rgba(222, 226, 230, 0.00) !important;
	
} 

#stacks_in_3414-wrapper .accordion-button:not(.collapsed) {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-200) !important;
	
	
	
	box-shadow: inset 0px -1px 0px 0px var(--bs-gray-300) !important;
	
	
} 

#stacks_in_3414-wrapper .accordion-collapse .list-group-item {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-100);
	
	
	
}

#stacks_in_3414-wrapper .accordion-collapse .item-inner-wrapper {
	
	padding-left: 12px;
	
}


#stacks_in_3414-wrapper.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_3414-wrapper.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3414-wrapper,
#stacks_in_3414-wrapper.custom-shadow,
#stacks_in_3414-wrapper.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}



.stacks_in_3416-fdy-item .item-label {
	font-weight: 700;
}

.stacks_in_3416-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_3416-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_3416-fdy-item .list-group-icons {
		
}

.stacks_in_3416-fdy-item:hover .list-group-icons {
		
}





#stacks_in_3418-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3418-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3418-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3418-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3418-margins.padding-advanced {
		padding: 0.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_3418-margins.padding-advanced {
		padding: 0.00rem 6.00rem 0.00rem 1.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3419-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(219, 240, 255, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}









#stacks_in_3421-wrapper {
	font-weight: 400;
}

/* Add a little space after numbers for numbered items */
#stacks_in_3421-wrapper.list-group-numbered > li::before {
	margin-right: 5px;
}



#stacks_in_3421-wrapper {
  --bs-accordion-color: #000;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}






/* Plus & Close */
#stacks_in_3421-wrapper .accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(219, 240, 255, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
}

#stacks_in_3421-wrapper .accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(46, 49, 53, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
	transform: rotate(135deg);
}

#stacks_in_3421-wrapper .list-group-item:hover.accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(192, 195, 195, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
}

#stacks_in_3421-wrapper .list-group-item:hover.accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(192, 195, 195, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
	transform: rotate(135deg);
}








#stacks_in_3421-wrapper .list-group-item {
	color: rgba(219, 240, 255, 1.00);
	
	
	background-color: rgba(65, 115, 33, 1.00);
	

	
	
	border-color: rgba(225, 230, 225, 0.00);
	
}

#stacks_in_3421-wrapper .list-group-item:hover,
#stacks_in_3421-wrapper .list-group-item.active {
	color: rgba(192, 195, 195, 1.00) !important;
	
	
	background-color: rgba(222, 226, 230, 0.00) !important;
	
} 

#stacks_in_3421-wrapper .accordion-button:not(.collapsed) {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-200) !important;
	
	
	
	box-shadow: inset 0px -1px 0px 0px var(--bs-gray-300) !important;
	
	
} 

#stacks_in_3421-wrapper .accordion-collapse .list-group-item {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-100);
	
	
	
}

#stacks_in_3421-wrapper .accordion-collapse .item-inner-wrapper {
	
	padding-left: 12px;
	
}


#stacks_in_3421-wrapper.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_3421-wrapper.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3421-wrapper,
#stacks_in_3421-wrapper.custom-shadow,
#stacks_in_3421-wrapper.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}



.stacks_in_3423-fdy-item .item-label {
	font-weight: 700;
}

.stacks_in_3423-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_3423-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_3423-fdy-item .list-group-icons {
		
}

.stacks_in_3423-fdy-item:hover .list-group-icons {
		
}



.stacks_in_8926-container {
	
	
	

	
	
	

}









#stacks_in_2344-wrapper {
	
}

#stacks_in_2344-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_2344-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_2344-wrapper.fdy-container {
	max-width: 500px;
  }
}



@media (min-width: 768px) {
  #stacks_in_2344-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_2344-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_2345-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2345-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2345-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2345-margins.padding-advanced {
	padding: 5.00rem 0.00rem 5.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_2345-margins.padding-advanced {
		padding: 7.00rem 0.00rem 7.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_2347-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(251, 0, 7, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}











@media (max-width: 575px) {
	
	#stacks_in_2349-wrapper .col {
		
	}
	
}





#stacks_in_2353-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2353-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2353-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2353-margins.padding-advanced {
	padding: 3.00rem 0.50rem 2.00rem 0.50rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_2353-margins.padding-advanced {
		padding: 5.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_8757-header {
	
	font-weight: 900;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8757-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8757-header {
	margin-bottom: 0;
}






.stacks_in_8757-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_8757-header {
		font-size: 1.40rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8757-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8757-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8757-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8757-header {
		font-size: 3.00rem;
	}
}



#stacks_in_2358-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2358-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2358-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2358-margins.padding-advanced {
	padding: 0.50rem 0.00rem 0.50rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_2358-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3171-wrapper {
	
	
	
		
		
		color: var(--bs-danger);
		
	
}







#stacks_in_3171-wrapper {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_3171-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_3171-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_3171-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_3171-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_3171-wrapper {
		font-size: 1.00rem;
	}
}



	#stacks_in_3171-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_3158-wrapper {
	
}

#stacks_in_3158-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_3158-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_3158-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_3158-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_3158-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_3160-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3160-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3160-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3160-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3160-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}





#stacks_in_3164-wrapper,
#stacks_in_3164-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_3164-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_3164-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_3164-wrapper {
	background-position: center center;
}


#stacks_in_3164-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_3164-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_3164-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_3164-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_3164-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_3164-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_3164-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_3164-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_3164-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_3164-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_3164-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_3164-wrapper.bkg-solid-color {
	background: rgba(174, 215, 248, 0.25);
}

#stacks_in_3164-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_3164-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_3164-wrapper.custom-corners,
#stacks_in_3164-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_3164-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_3164-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_3164-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_3164-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_3164-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_3166-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3166-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3166-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3166-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_3168-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.40rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3168-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3168-header {
	margin-bottom: 0;
}










#stacks_in_3175-wrapper {
	
}

#stacks_in_3175-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_3175-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_3175-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_3175-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_3175-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_3177-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3177-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3177-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3177-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3177-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}





#stacks_in_3181-wrapper,
#stacks_in_3181-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_3181-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_3181-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_3181-wrapper {
	background-position: center center;
}


#stacks_in_3181-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_3181-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_3181-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_3181-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_3181-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_3181-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_3181-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_3181-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_3181-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_3181-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_3181-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_3181-wrapper.bkg-solid-color {
	background: rgba(174, 215, 248, 0.25);
}

#stacks_in_3181-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_3181-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_3181-wrapper.custom-corners,
#stacks_in_3181-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_3181-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_3181-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_3181-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_3181-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_3181-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_3183-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3183-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3183-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3183-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_3185-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.40rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3185-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3185-header {
	margin-bottom: 0;
}








#stacks_in_3188-wrapper {
	
	
	
		
		color: rgba(83, 135, 183, 1.00);
		
		
	
}


#stacks_in_3188-wrapper {
	color: rgba(83, 135, 183, 1.00);
}

#stacks_in_3188-wrapper a,
#stacks_in_3188-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_3188-wrapper a:hover,
#stacks_in_3188-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}






#stacks_in_3188-wrapper {
	font-size: 0.90rem;
}

@media (min-width: 576px) {
	#stacks_in_3188-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_3188-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_3188-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_3188-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_3188-wrapper {
		font-size: 1.00rem;
	}
}



	#stacks_in_3188-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_3190-wrapper {
	
}

#stacks_in_3190-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_3190-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_3190-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_3190-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_3190-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_3192-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3192-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3192-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3192-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3192-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}





#stacks_in_3196-wrapper,
#stacks_in_3196-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_3196-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_3196-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_3196-wrapper {
	background-position: center center;
}


#stacks_in_3196-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_3196-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_3196-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_3196-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_3196-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_3196-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_3196-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_3196-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_3196-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_3196-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_3196-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_3196-wrapper.bkg-solid-color {
	background: rgba(174, 215, 248, 0.25);
}

#stacks_in_3196-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_3196-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_3196-wrapper.custom-corners,
#stacks_in_3196-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_3196-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_3196-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_3196-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_3196-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_3196-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_3198-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3198-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3198-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3198-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_3200-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.40rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3200-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3200-header {
	margin-bottom: 0;
}








#stacks_in_3203-wrapper {
	
	
	
		
		color: rgba(83, 135, 183, 1.00);
		
		
	
}


#stacks_in_3203-wrapper {
	color: rgba(83, 135, 183, 1.00);
}

#stacks_in_3203-wrapper a,
#stacks_in_3203-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_3203-wrapper a:hover,
#stacks_in_3203-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}






#stacks_in_3203-wrapper {
	font-size: 0.90rem;
}

@media (min-width: 576px) {
	#stacks_in_3203-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_3203-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_3203-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_3203-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_3203-wrapper {
		font-size: 1.00rem;
	}
}



	#stacks_in_3203-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_3134-wrapper {
	
}

#stacks_in_3134-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_3134-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_3134-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_3134-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_3134-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_3136-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3136-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3136-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3136-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3136-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}





#stacks_in_3151-wrapper,
#stacks_in_3151-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_3151-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_3151-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_3151-wrapper {
	background-position: center center;
}


#stacks_in_3151-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_3151-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_3151-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_3151-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_3151-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_3151-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_3151-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_3151-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_3151-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_3151-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_3151-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_3151-wrapper.bkg-solid-color {
	background: rgba(174, 215, 248, 0.25);
}

#stacks_in_3151-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_3151-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_3151-wrapper.custom-corners,
#stacks_in_3151-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_3151-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_3151-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_3151-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_3151-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_3151-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_3140-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3140-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3140-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3140-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_3142-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.40rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3142-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3142-header {
	margin-bottom: 0;
}








#stacks_in_3153-wrapper {
	
	
	
		
		color: rgba(83, 135, 183, 1.00);
		
		
	
}


#stacks_in_3153-wrapper {
	color: rgba(83, 135, 183, 1.00);
}

#stacks_in_3153-wrapper a,
#stacks_in_3153-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_3153-wrapper a:hover,
#stacks_in_3153-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}






#stacks_in_3153-wrapper {
	font-size: 0.90rem;
}

@media (min-width: 576px) {
	#stacks_in_3153-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_3153-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_3153-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_3153-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_3153-wrapper {
		font-size: 1.00rem;
	}
}



	#stacks_in_3153-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_3212-wrapper {
	
}

#stacks_in_3212-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_3212-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_3212-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_3212-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_3212-wrapper.fdy-container {
	max-width: 960px;
  }
}











#stacks_in_3265-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3265-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3265-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3265-margins.padding-advanced {
	padding: 0.50rem 0.00rem 3.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3265-margins.padding-advanced {
		padding: 1.00rem 0.00rem 5.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_3266-header {
	
	font-weight: 900;
	
	
	
	
	
	
	
	
	color: var(--bs-danger);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_3266-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_3266-header {
	margin-bottom: 0;
}






.stacks_in_3266-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_3266-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_3266-header {
		font-size: 1.85rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_3266-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3266-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3266-header {
		font-size: 2.00rem;
	}
}



.stacks_in_3475-container {
	
	
	

	
	
	

}








#stacks_in_3648-wrapper,
#stacks_in_3648-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_3648-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_3648-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_3648-wrapper {
	background-position: center center;
}


#stacks_in_3648-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_3648-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_3648-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_3648-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_3648-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_3648-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_3648-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_3648-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_3648-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_3648-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_3648-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_3648-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_3648-wrapper.bkg-gradient-two {
	background: rgba(122, 174, 246, 0.50);
	background: linear-gradient(0deg, rgba(122, 174, 246, 0.50) 0%, rgba(219, 240, 255, 1.00) 100%);
}

#stacks_in_3648-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_3648-wrapper.custom-corners,
#stacks_in_3648-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_3648-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_3648-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_3648-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_3648-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_3648-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_3477-wrapper {
	
}

#stacks_in_3477-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_3477-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_3477-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_3477-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_3477-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_3485-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3485-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3485-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3485-margins.padding-advanced {
	padding: 2.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3485-margins.padding-advanced {
		padding: 4.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
	#stacks_in_3485-margins.padding-advanced {
		padding: 4.00rem 0.00rem 8.00rem 0.00rem;
	}
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_3479-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_3514-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3514-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_3514-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3514-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3514-margins.padding-advanced {
		padding: 0.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_3514-margins.padding-advanced {
		padding: 0.00rem 15.00rem 3.00rem 15.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_3515-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3515-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3515-header {
	margin-bottom: 0;
}






.stacks_in_3515-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_3515-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_3515-header {
		font-size: 2.75rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_3515-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3515-header {
		font-size: 2.75rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3515-header {
		font-size: 3.00rem;
	}
}





#stacks_in_3652-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3652-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_3652-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3652-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_3527-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_3527-wrapper .card-header {
	
	
	background-color: rgba(122, 174, 246, 0.12);
	
}

#stacks_in_3527-wrapper.custom-radius,
#stacks_in_3527-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_3527-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_3527-wrapper .card-body {
	
	
	background: rgba(122, 174, 246, 0.35);
	
}



#stacks_in_3527-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_3527-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_3527-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_3527-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_3527-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_3527-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_3527-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_3527-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_3527-wrapper .card-header h1,
#stacks_in_3527-wrapper .card-header h2,
#stacks_in_3527-wrapper .card-header h3,
#stacks_in_3527-wrapper .card-header h4,
#stacks_in_3527-wrapper .card-header h5,
#stacks_in_3527-wrapper .card-header h6,
#stacks_in_3527-wrapper .card-header p:last-of-type,
#stacks_in_3527-wrapper .card-header small,
#stacks_in_3527-wrapper .card-footer h1,
#stacks_in_3527-wrapper .card-footer h2,
#stacks_in_3527-wrapper .card-footer h3,
#stacks_in_3527-wrapper .card-footer h4,
#stacks_in_3527-wrapper .card-footer h5,
#stacks_in_3527-wrapper .card-footer h6,
#stacks_in_3527-wrapper .card-footer p:last-of-type,
#stacks_in_3527-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_3527-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_3527-wrapper.card.custom-shadow {
	box-shadow: 1px 1px 10px 5px rgba(255, 255, 255, 0.30);
}

#stacks_in_3527-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3527-wrapper.card,
#stacks_in_3527-wrapper.card.custom-shadow,
#stacks_in_3527-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3527-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_3527-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_3527-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3527-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3527-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3527-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3527-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3527-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_3527-wrapper img {
 	margin: 0 !important;
 }
 


#stacks_in_3546-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3546-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_3546-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3546-margins.padding-advanced {
	padding: 2.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
#stacks_out_3561 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3561 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3561 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3561 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3561 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3561 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3561 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart-icons)";
	text-transform: capitalize;
}


 #stacks_in_3547.blu-svg{text-align:center}#stacks_in_3547.blu-svg svg{width:56.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_3547.blu-svg{text-align:center}#stacks_in_3547.blu-svg svg{width:56.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_3547.blu-svg{text-align:center}#stacks_in_3547.blu-svg svg{width:56.00px}}@media screen and (min-width:1000px){#stacks_in_3547.blu-svg{text-align:center}#stacks_in_3547.blu-svg svg{width:56.00px}}  #stacks_in_3547.blu-svg svg rectange,#stacks_in_3547.blu-svg svg circle,#stacks_in_3547.blu-svg svg ellipse,#stacks_in_3547.blu-svg svg polygon,#stacks_in_3547.blu-svg svg polyline,#stacks_in_3547.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_3547.blu-svg svg:hover rectange,#stacks_in_3547.blu-svg svg:hover circle,#stacks_in_3547.blu-svg svg:hover ellipse,#stacks_in_3547.blu-svg svg:hover polygon,#stacks_in_3547.blu-svg svg:hover polyline,#stacks_in_3547.blu-svg svg:hover path{fill:rgba(13, 75, 161, 1.00)!important} #stacks_in_3547.blu-svg{float:none}#stacks_in_3547 a,#stacks_in_3547 svg{cursor:auto}



#stacks_in_3552-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3552-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_3552-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3552-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
#stacks_out_3565 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3565 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3565 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3565 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3565 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3565 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3565 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart)";
	text-transform: capitalize;
}





h2.stacks_in_3553-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.55rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3553-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3553-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_3542.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3542.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3542.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3542.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3542.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3542.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_3542.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_3542.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_3542.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_3542.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_3658 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3658 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3658 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3658 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3658 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3658 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3658 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart-list)";
	text-transform: capitalize;
}




.stacks_in_3529-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_3529-list {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_3529-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_3529-list a,
.stacks_in_3529-list a:visited,
.stacks_in_3529-list a:hover,
.stacks_in_3529-list a:active {
	text-decoration: none;
}

.stacks_in_3529-list a,
.stacks_in_3529-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_3529-list a:hover,
.stacks_in_3529-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_3529-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3529-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3529-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3529-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3529-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3529-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_3529-list .list-inline-item:not(:last-child) {

}

.stacks_in_3529-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_3529-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_3531-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3531-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_3533-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3533-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_3534-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3534-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_3544-wrapper {
	
	
	
}

#stacks_in_3544-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_3544-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_3544-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3544-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3544-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3544-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3544-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3544-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_3650-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3650-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_3650-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3650-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_3581-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_3581-wrapper .card-header {
	
	
	background-color: rgba(122, 174, 246, 0.12);
	
}

#stacks_in_3581-wrapper.custom-radius,
#stacks_in_3581-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_3581-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_3581-wrapper .card-body {
	
	
	background: rgba(122, 174, 246, 0.35);
	
}



#stacks_in_3581-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_3581-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_3581-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_3581-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_3581-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_3581-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_3581-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_3581-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_3581-wrapper .card-header h1,
#stacks_in_3581-wrapper .card-header h2,
#stacks_in_3581-wrapper .card-header h3,
#stacks_in_3581-wrapper .card-header h4,
#stacks_in_3581-wrapper .card-header h5,
#stacks_in_3581-wrapper .card-header h6,
#stacks_in_3581-wrapper .card-header p:last-of-type,
#stacks_in_3581-wrapper .card-header small,
#stacks_in_3581-wrapper .card-footer h1,
#stacks_in_3581-wrapper .card-footer h2,
#stacks_in_3581-wrapper .card-footer h3,
#stacks_in_3581-wrapper .card-footer h4,
#stacks_in_3581-wrapper .card-footer h5,
#stacks_in_3581-wrapper .card-footer h6,
#stacks_in_3581-wrapper .card-footer p:last-of-type,
#stacks_in_3581-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_3581-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_3581-wrapper.card.custom-shadow {
	box-shadow: 1px 1px 10px 5px rgba(255, 255, 255, 0.30);
}

#stacks_in_3581-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3581-wrapper.card,
#stacks_in_3581-wrapper.card.custom-shadow,
#stacks_in_3581-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3581-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_3581-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_3581-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3581-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3581-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3581-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3581-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3581-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_3581-wrapper img {
 	margin: 0 !important;
 }
 


#stacks_in_3601-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3601-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_3601-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3601-margins.padding-advanced {
	padding: 2.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
#stacks_out_3603 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3603 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3603 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3603 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3603 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3603 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3603 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart-icons)";
	text-transform: capitalize;
}


 #stacks_in_3605.blu-svg{text-align:center}#stacks_in_3605.blu-svg svg{width:56.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_3605.blu-svg{text-align:center}#stacks_in_3605.blu-svg svg{width:56.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_3605.blu-svg{text-align:center}#stacks_in_3605.blu-svg svg{width:56.00px}}@media screen and (min-width:1000px){#stacks_in_3605.blu-svg{text-align:center}#stacks_in_3605.blu-svg svg{width:56.00px}}  #stacks_in_3605.blu-svg svg rectange,#stacks_in_3605.blu-svg svg circle,#stacks_in_3605.blu-svg svg ellipse,#stacks_in_3605.blu-svg svg polygon,#stacks_in_3605.blu-svg svg polyline,#stacks_in_3605.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_3605.blu-svg svg:hover rectange,#stacks_in_3605.blu-svg svg:hover circle,#stacks_in_3605.blu-svg svg:hover ellipse,#stacks_in_3605.blu-svg svg:hover polygon,#stacks_in_3605.blu-svg svg:hover polyline,#stacks_in_3605.blu-svg svg:hover path{fill:rgba(75, 126, 37, 1.00)!important} #stacks_in_3605.blu-svg{float:none}#stacks_in_3605 a,#stacks_in_3605 svg{cursor:auto}



#stacks_in_3608-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3608-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_3608-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3608-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
#stacks_out_3609 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3609 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3609 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3609 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3609 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3609 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3609 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart)";
	text-transform: capitalize;
}





h2.stacks_in_3611-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.55rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3611-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3611-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_3614.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3614.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3614.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3614.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3614.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3614.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_3614.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_3614.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_3614.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_3614.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_3654 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3654 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3654 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3654 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3654 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3654 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3654 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart-list)";
	text-transform: capitalize;
}




.stacks_in_3596-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_3596-list {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_3596-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_3596-list a,
.stacks_in_3596-list a:visited,
.stacks_in_3596-list a:hover,
.stacks_in_3596-list a:active {
	text-decoration: none;
}

.stacks_in_3596-list a,
.stacks_in_3596-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_3596-list a:hover,
.stacks_in_3596-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_3596-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3596-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3596-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3596-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3596-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3596-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_3596-list .list-inline-item:not(:last-child) {

}

.stacks_in_3596-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_3596-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_3597-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3597-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_3599-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3599-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_3600-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3600-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_3616-wrapper {
	
	
	
}

#stacks_in_3616-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_3616-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_3616-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3616-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3616-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3616-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3616-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3616-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_6104-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6104-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_6104-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6104-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_3621-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_3621-wrapper .card-header {
	
	
	background-color: rgba(122, 174, 246, 0.12);
	
}

#stacks_in_3621-wrapper.custom-radius,
#stacks_in_3621-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_3621-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_3621-wrapper .card-body {
	
	
	background: rgba(122, 174, 246, 0.35);
	
}



#stacks_in_3621-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_3621-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_3621-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_3621-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_3621-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_3621-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_3621-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_3621-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_3621-wrapper .card-header h1,
#stacks_in_3621-wrapper .card-header h2,
#stacks_in_3621-wrapper .card-header h3,
#stacks_in_3621-wrapper .card-header h4,
#stacks_in_3621-wrapper .card-header h5,
#stacks_in_3621-wrapper .card-header h6,
#stacks_in_3621-wrapper .card-header p:last-of-type,
#stacks_in_3621-wrapper .card-header small,
#stacks_in_3621-wrapper .card-footer h1,
#stacks_in_3621-wrapper .card-footer h2,
#stacks_in_3621-wrapper .card-footer h3,
#stacks_in_3621-wrapper .card-footer h4,
#stacks_in_3621-wrapper .card-footer h5,
#stacks_in_3621-wrapper .card-footer h6,
#stacks_in_3621-wrapper .card-footer p:last-of-type,
#stacks_in_3621-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_3621-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_3621-wrapper.card.custom-shadow {
	box-shadow: 1px 1px 10px 5px rgba(255, 255, 255, 0.30);
}

#stacks_in_3621-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3621-wrapper.card,
#stacks_in_3621-wrapper.card.custom-shadow,
#stacks_in_3621-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3621-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_3621-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_3621-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3621-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3621-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3621-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3621-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3621-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_3621-wrapper img {
 	margin: 0 !important;
 }
 


#stacks_in_3629-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3629-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_3629-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3629-margins.padding-advanced {
	padding: 2.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
#stacks_out_3631 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3631 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3631 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3631 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3631 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3631 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3631 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart-icons)";
	text-transform: capitalize;
}


 #stacks_in_3633.blu-svg{text-align:center}#stacks_in_3633.blu-svg svg{width:56.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_3633.blu-svg{text-align:center}#stacks_in_3633.blu-svg svg{width:56.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_3633.blu-svg{text-align:center}#stacks_in_3633.blu-svg svg{width:56.00px}}@media screen and (min-width:1000px){#stacks_in_3633.blu-svg{text-align:center}#stacks_in_3633.blu-svg svg{width:56.00px}}  #stacks_in_3633.blu-svg svg rectange,#stacks_in_3633.blu-svg svg circle,#stacks_in_3633.blu-svg svg ellipse,#stacks_in_3633.blu-svg svg polygon,#stacks_in_3633.blu-svg svg polyline,#stacks_in_3633.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_3633.blu-svg svg:hover rectange,#stacks_in_3633.blu-svg svg:hover circle,#stacks_in_3633.blu-svg svg:hover ellipse,#stacks_in_3633.blu-svg svg:hover polygon,#stacks_in_3633.blu-svg svg:hover polyline,#stacks_in_3633.blu-svg svg:hover path{fill:rgba(115, 72, 47, 1.00)!important} #stacks_in_3633.blu-svg{float:none}#stacks_in_3633 a,#stacks_in_3633 svg{cursor:auto}



#stacks_in_3636-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3636-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_3636-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3636-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
#stacks_out_3637 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3637 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3637 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3637 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3637 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3637 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3637 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart)";
	text-transform: capitalize;
}





h2.stacks_in_3639-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.55rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3639-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3639-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_3642.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3642.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3642.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3642.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3642.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3642.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_3642.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_3642.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_3642.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_3642.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_3660 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3660 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3660 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3660 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3660 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3660 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3660 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart-list)";
	text-transform: capitalize;
}




.stacks_in_3623-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_3623-list {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_3623-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_3623-list a,
.stacks_in_3623-list a:visited,
.stacks_in_3623-list a:hover,
.stacks_in_3623-list a:active {
	text-decoration: none;
}

.stacks_in_3623-list a,
.stacks_in_3623-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_3623-list a:hover,
.stacks_in_3623-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_3623-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3623-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3623-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3623-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3623-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3623-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_3623-list .list-inline-item:not(:last-child) {

}

.stacks_in_3623-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_3623-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_3625-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3625-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_3627-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3627-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_3628-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3628-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_3644-wrapper {
	
	
	
}

#stacks_in_3644-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_3644-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_3644-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3644-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3644-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3644-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3644-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3644-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_6074-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6074-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_6074-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6074-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_3501-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_3501-wrapper .card-header {
	
	
	background-color: rgba(122, 174, 246, 0.12);
	
}

#stacks_in_3501-wrapper.custom-radius,
#stacks_in_3501-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_3501-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_3501-wrapper .card-body {
	
	
	background: rgba(122, 174, 246, 0.35);
	
}



#stacks_in_3501-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_3501-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_3501-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_3501-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_3501-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_3501-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_3501-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_3501-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_3501-wrapper .card-header h1,
#stacks_in_3501-wrapper .card-header h2,
#stacks_in_3501-wrapper .card-header h3,
#stacks_in_3501-wrapper .card-header h4,
#stacks_in_3501-wrapper .card-header h5,
#stacks_in_3501-wrapper .card-header h6,
#stacks_in_3501-wrapper .card-header p:last-of-type,
#stacks_in_3501-wrapper .card-header small,
#stacks_in_3501-wrapper .card-footer h1,
#stacks_in_3501-wrapper .card-footer h2,
#stacks_in_3501-wrapper .card-footer h3,
#stacks_in_3501-wrapper .card-footer h4,
#stacks_in_3501-wrapper .card-footer h5,
#stacks_in_3501-wrapper .card-footer h6,
#stacks_in_3501-wrapper .card-footer p:last-of-type,
#stacks_in_3501-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_3501-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_3501-wrapper.card.custom-shadow {
	box-shadow: 1px 1px 10px 5px rgba(255, 255, 255, 0.30);
}

#stacks_in_3501-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3501-wrapper.card,
#stacks_in_3501-wrapper.card.custom-shadow,
#stacks_in_3501-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3501-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_3501-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_3501-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3501-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3501-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3501-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3501-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3501-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_3501-wrapper img {
 	margin: 0 !important;
 }
 


#stacks_in_3487-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3487-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_3487-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3487-margins.padding-advanced {
	padding: 2.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
#stacks_out_3563 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3563 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3563 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3563 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3563 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3563 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3563 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart-icons)";
	text-transform: capitalize;
}


 #stacks_in_8765.blu-svg{text-align:center}#stacks_in_8765.blu-svg svg{width:56.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_8765.blu-svg{text-align:center}#stacks_in_8765.blu-svg svg{width:56.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_8765.blu-svg{text-align:center}#stacks_in_8765.blu-svg svg{width:56.00px}}@media screen and (min-width:1000px){#stacks_in_8765.blu-svg{text-align:center}#stacks_in_8765.blu-svg svg{width:56.00px}}  #stacks_in_8765.blu-svg svg rectange,#stacks_in_8765.blu-svg svg circle,#stacks_in_8765.blu-svg svg ellipse,#stacks_in_8765.blu-svg svg polygon,#stacks_in_8765.blu-svg svg polyline,#stacks_in_8765.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_8765.blu-svg svg:hover rectange,#stacks_in_8765.blu-svg svg:hover circle,#stacks_in_8765.blu-svg svg:hover ellipse,#stacks_in_8765.blu-svg svg:hover polygon,#stacks_in_8765.blu-svg svg:hover polyline,#stacks_in_8765.blu-svg svg:hover path{fill:rgba(251, 0, 7, 1.00)!important} #stacks_in_8765.blu-svg{float:none}#stacks_in_8765 a,#stacks_in_8765 svg{cursor:auto}



#stacks_in_3535-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3535-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_3535-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3535-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
#stacks_out_3558 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3558 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3558 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3558 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3558 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3558 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3558 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart)";
	text-transform: capitalize;
}





h2.stacks_in_3488-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.55rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3488-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3488-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_3508.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3508.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3508.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3508.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3508.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3508.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_3508.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_3508.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_3508.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_3508.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_3662 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3662 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3662 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3662 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3662 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3662 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3662 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (set-apart-list)";
	text-transform: capitalize;
}




.stacks_in_3496-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_3496-list {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_3496-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_3496-list a,
.stacks_in_3496-list a:visited,
.stacks_in_3496-list a:hover,
.stacks_in_3496-list a:active {
	text-decoration: none;
}

.stacks_in_3496-list a,
.stacks_in_3496-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_3496-list a:hover,
.stacks_in_3496-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_3496-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3496-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3496-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3496-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3496-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3496-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_3496-list .list-inline-item:not(:last-child) {

}

.stacks_in_3496-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_3496-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_3497-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3497-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_3513-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3513-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_3512-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_3512-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_3510-wrapper {
	
	
	
}

#stacks_in_3510-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_3510-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_3510-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3510-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3510-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3510-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3510-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3510-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_111-container {
	
	
	

	
	
	
	display: grid;
    grid-auto-flow: row;
		
			align-content: start;
			
		
		
	

}









#stacks_in_3664-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3664-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3664-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3664-margins.padding-advanced {
	padding: 5.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3664-margins.padding-advanced {
		padding: 5.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
	#stacks_in_3664-margins.padding-advanced {
		padding: 9.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6306-wrapper {
	
}

#stacks_in_6306-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_6306-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_6306-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_6306-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_6306-wrapper.fdy-container {
	max-width: 960px;
  }
}







#stacks_in_1406-wrapper,
#stacks_in_1406-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1406-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1406-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1406-wrapper {
	background-position: center center;
}


#stacks_in_1406-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1406-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1406-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1406-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1406-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1406-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1406-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1406-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1406-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1406-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1406-wrapper.bkg-preset {
	background: var(--bs-gray-200);
}

#stacks_in_1406-wrapper.bkg-solid-color {
	background: rgba(13, 75, 161, 0.25);
}

#stacks_in_1406-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_1406-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_1406-wrapper.custom-corners,
#stacks_in_1406-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1406-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1406-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1406-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1406-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1406-wrapper {
	
	border-color: rgba(137, 166, 208, 1.00) !important;
	
	
	
	
}








	

	








#stacks_in_42-wrapper {
	
}

#stacks_in_42-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_42-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_42-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_42-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_42-wrapper.fdy-container {
	max-width: 960px;
  }
}



@media (min-width: 1200px) {
  #stacks_in_42-wrapper.fdy-container {
	max-width: 1140px;
  }
}









@media (max-width: 575px) {
	
	#stacks_in_107-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}




	.col.stacks_in_109-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




#stacks_in_113-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_113-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_113-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_113-margins.padding-advanced {
	padding: 3.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_113-margins.padding-advanced {
		padding: 10.00rem 0.00rem 10.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






h3.stacks_in_117-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_117-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_117-header {
	margin-bottom: 0;
}






.stacks_in_117-header {
	font-size: 3.00rem;
}

@media (min-width: 576px) {
	.stacks_in_117-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_117-header {
		font-size: 2.80rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_117-header {
		font-size: 2.80rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_117-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_117-header {
		font-size: 3.00rem;
	}
}



#stacks_in_120-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_120-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_120-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_120-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_121-wrapper {
	
	border-color: var(--bs-white) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_121-wrapper .border-badge {
	
	background-color: var(--bs-primary) !important;
	
	
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_121-wrapper .border-badge {
	
}

#stacks_in_121-wrapper.custom-width {
	width: 50%;
}


#stacks_in_1260-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1260-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1260-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1260-margins.padding-advanced {
	padding: 0.00rem 2.00rem 0.00rem 2.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1260-margins.padding-advanced {
		padding: 0.00rem 1.00rem 0.00rem 1.00rem;
	}
	
}

@media (min-width: 992px) {
	
	#stacks_in_1260-margins.padding-advanced {
		padding: 0.00rem 3.50rem 0.00rem 3.50rem;
	}
	
}

@media (min-width: 1200px) {
	
	#stacks_in_1260-margins.padding-advanced {
		padding: 0.00rem 6.00rem 0.00rem 6.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_123-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}







#stacks_in_123-wrapper {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_123-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_123-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_123-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_123-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_123-wrapper {
		font-size: 1.00rem;
	}
}



	#stacks_in_123-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_131-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_131-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_131-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_131-margins.padding-advanced {
	padding: 0.00rem 0.00rem 5.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_131-margins.padding-advanced {
		padding: 10.00rem 0.00rem 10.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_132-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(12, 97, 176, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			
				border-radius: 10px 10px 10px 10px;
			

}





#image-compare-stacks_in_1266 .icv__label{font-size:12px}@media (min-width:600px){#image-compare-stacks_in_1266 .icv__label{font-size:14px}}


.stacks_in_3682-container {
	
	
	

	
	
	

}









#stacks_in_3683-wrapper {
	
}

#stacks_in_3683-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_3683-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_3683-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_3683-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_3683-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_3685-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3685-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3685-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3685-margins.padding-advanced {
	padding: 7.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3685-margins.padding-advanced {
		padding: 10.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_3685-margins.padding-advanced {
		padding: 15.00rem 0.00rem 5.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_3687-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_3691-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3691-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3691-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3691-margins.padding-advanced {
	padding: 0.00rem 0.00rem 3.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3691-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_3691-margins.padding-advanced {
		padding: 0.00rem 10.00rem 4.00rem 10.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_3693-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3693-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_3693-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_3693-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_3693-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_3693-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_3693-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_3693-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_3693-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_3693-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_3693-header {
		font-size: 3.70rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_3693-header {
		font-size: 3.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3693-header {
		font-size: 4.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3693-header {
		font-size: 4.00rem;
	}
}






@media (max-width: 575px) {
	
	#stacks_in_3698-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}


#stacks_out_3701 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3701 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3701 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3701 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3701 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3701 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3701 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (real-results-from-baltimore)";
	text-transform: capitalize;
}


#stacks_out_3701 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):before,
#stacks_out_3701 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):before {
	content: "real-results-from-baltimore | ";
}




#stacks_in_3703-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(165, 216, 255, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_3705-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_3705-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_3705-wrapper.custom-radius,
#stacks_in_3705-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_3705-wrapper .card-body {
	
	
}

#stacks_in_3705-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_3705-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_3705-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_3705-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_3705-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_3705-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_3705-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_3705-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_3705-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_3705-wrapper .card-header h1,
#stacks_in_3705-wrapper .card-header h2,
#stacks_in_3705-wrapper .card-header h3,
#stacks_in_3705-wrapper .card-header h4,
#stacks_in_3705-wrapper .card-header h5,
#stacks_in_3705-wrapper .card-header h6,
#stacks_in_3705-wrapper .card-header p:last-of-type,
#stacks_in_3705-wrapper .card-header small,
#stacks_in_3705-wrapper .card-footer h1,
#stacks_in_3705-wrapper .card-footer h2,
#stacks_in_3705-wrapper .card-footer h3,
#stacks_in_3705-wrapper .card-footer h4,
#stacks_in_3705-wrapper .card-footer h5,
#stacks_in_3705-wrapper .card-footer h6,
#stacks_in_3705-wrapper .card-footer p:last-of-type,
#stacks_in_3705-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_3705-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_3705-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_3705-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3705-wrapper.card,
#stacks_in_3705-wrapper.card.custom-shadow,
#stacks_in_3705-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3705-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_3705-wrapper .card-footer {
	
}

 

#stacks_in_3705-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_3827-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3827-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3827-header {
	margin-bottom: 0;
}






.stacks_in_3827-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_3827-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_3827-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_3827-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3827-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3827-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_3829.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3829.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3829.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3829.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3829.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3829.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_3829.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_3829.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_3829.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_3829.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_3710 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3710 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3710 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3710 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3710 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3710 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3710 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (real-results)";
	text-transform: capitalize;
}





#stacks_in_3711-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3711-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3711-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3711-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3711-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3713-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_3713-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_3713-wrapper a,
#stacks_in_3713-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_3713-wrapper a:hover,
#stacks_in_3713-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_3713-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_3831-wrapper {
	
	
	
}

#stacks_in_3831-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_3831-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_3831-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3831-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3831-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3831-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3831-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3831-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_out_3733 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3733 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3733 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3733 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3733 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3733 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3733 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (real-results-from-baltimore)";
	text-transform: capitalize;
}





#stacks_in_3735-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(165, 216, 255, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_3737-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_3737-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_3737-wrapper.custom-radius,
#stacks_in_3737-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_3737-wrapper .card-body {
	
	
}

#stacks_in_3737-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_3737-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_3737-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_3737-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_3737-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_3737-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_3737-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_3737-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_3737-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_3737-wrapper .card-header h1,
#stacks_in_3737-wrapper .card-header h2,
#stacks_in_3737-wrapper .card-header h3,
#stacks_in_3737-wrapper .card-header h4,
#stacks_in_3737-wrapper .card-header h5,
#stacks_in_3737-wrapper .card-header h6,
#stacks_in_3737-wrapper .card-header p:last-of-type,
#stacks_in_3737-wrapper .card-header small,
#stacks_in_3737-wrapper .card-footer h1,
#stacks_in_3737-wrapper .card-footer h2,
#stacks_in_3737-wrapper .card-footer h3,
#stacks_in_3737-wrapper .card-footer h4,
#stacks_in_3737-wrapper .card-footer h5,
#stacks_in_3737-wrapper .card-footer h6,
#stacks_in_3737-wrapper .card-footer p:last-of-type,
#stacks_in_3737-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_3737-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_3737-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_3737-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3737-wrapper.card,
#stacks_in_3737-wrapper.card.custom-shadow,
#stacks_in_3737-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3737-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_3737-wrapper .card-footer {
	
}

 

#stacks_in_3737-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_3833-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3833-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3833-header {
	margin-bottom: 0;
}






.stacks_in_3833-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_3833-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_3833-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_3833-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3833-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3833-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_3835.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3835.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3835.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3835.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3835.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3835.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_3835.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_3835.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_3835.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_3835.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_3742 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3742 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3742 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3742 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3742 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3742 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3742 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (real-results)";
	text-transform: capitalize;
}





#stacks_in_3743-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3743-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3743-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3743-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3743-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3745-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_3745-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_3745-wrapper a,
#stacks_in_3745-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_3745-wrapper a:hover,
#stacks_in_3745-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_3745-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_3837-wrapper {
	
	
	
}

#stacks_in_3837-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_3837-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_3837-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3837-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3837-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3837-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3837-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3837-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_out_3765 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3765 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3765 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3765 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3765 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3765 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3765 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (real-results-from-baltimore)";
	text-transform: capitalize;
}





#stacks_in_3767-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(165, 216, 255, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_3769-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_3769-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_3769-wrapper.custom-radius,
#stacks_in_3769-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_3769-wrapper .card-body {
	
	
}

#stacks_in_3769-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_3769-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_3769-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_3769-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_3769-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_3769-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_3769-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_3769-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_3769-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_3769-wrapper .card-header h1,
#stacks_in_3769-wrapper .card-header h2,
#stacks_in_3769-wrapper .card-header h3,
#stacks_in_3769-wrapper .card-header h4,
#stacks_in_3769-wrapper .card-header h5,
#stacks_in_3769-wrapper .card-header h6,
#stacks_in_3769-wrapper .card-header p:last-of-type,
#stacks_in_3769-wrapper .card-header small,
#stacks_in_3769-wrapper .card-footer h1,
#stacks_in_3769-wrapper .card-footer h2,
#stacks_in_3769-wrapper .card-footer h3,
#stacks_in_3769-wrapper .card-footer h4,
#stacks_in_3769-wrapper .card-footer h5,
#stacks_in_3769-wrapper .card-footer h6,
#stacks_in_3769-wrapper .card-footer p:last-of-type,
#stacks_in_3769-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_3769-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_3769-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_3769-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3769-wrapper.card,
#stacks_in_3769-wrapper.card.custom-shadow,
#stacks_in_3769-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3769-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_3769-wrapper .card-footer {
	
}

 

#stacks_in_3769-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_3839-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3839-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3839-header {
	margin-bottom: 0;
}






.stacks_in_3839-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_3839-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_3839-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_3839-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3839-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3839-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_3841.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3841.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3841.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3841.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3841.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3841.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_3841.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_3841.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_3841.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_3841.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_3774 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3774 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3774 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3774 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3774 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3774 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3774 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (real-results)";
	text-transform: capitalize;
}





#stacks_in_3775-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3775-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3775-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3775-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3775-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3777-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_3777-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_3777-wrapper a,
#stacks_in_3777-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_3777-wrapper a:hover,
#stacks_in_3777-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_3777-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_3843-wrapper {
	
	
	
}

#stacks_in_3843-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_3843-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_3843-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3843-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3843-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3843-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3843-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3843-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_out_3797 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3797 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3797 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3797 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3797 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3797 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3797 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (real-results-from-baltimore)";
	text-transform: capitalize;
}





#stacks_in_3799-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(165, 216, 255, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_3801-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_3801-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_3801-wrapper.custom-radius,
#stacks_in_3801-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_3801-wrapper .card-body {
	
	
}

#stacks_in_3801-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_3801-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_3801-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_3801-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_3801-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_3801-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_3801-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_3801-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_3801-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_3801-wrapper .card-header h1,
#stacks_in_3801-wrapper .card-header h2,
#stacks_in_3801-wrapper .card-header h3,
#stacks_in_3801-wrapper .card-header h4,
#stacks_in_3801-wrapper .card-header h5,
#stacks_in_3801-wrapper .card-header h6,
#stacks_in_3801-wrapper .card-header p:last-of-type,
#stacks_in_3801-wrapper .card-header small,
#stacks_in_3801-wrapper .card-footer h1,
#stacks_in_3801-wrapper .card-footer h2,
#stacks_in_3801-wrapper .card-footer h3,
#stacks_in_3801-wrapper .card-footer h4,
#stacks_in_3801-wrapper .card-footer h5,
#stacks_in_3801-wrapper .card-footer h6,
#stacks_in_3801-wrapper .card-footer p:last-of-type,
#stacks_in_3801-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_3801-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_3801-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_3801-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3801-wrapper.card,
#stacks_in_3801-wrapper.card.custom-shadow,
#stacks_in_3801-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3801-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_3801-wrapper .card-footer {
	
}

 

#stacks_in_3801-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_3845-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_3845-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_3845-header {
	margin-bottom: 0;
}






.stacks_in_3845-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_3845-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_3845-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_3845-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3845-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3845-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_3847.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_3847.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_3847.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_3847.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_3847.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_3847.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_3847.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_3847.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_3847.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_3847.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_3806 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_3806 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_3806 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_3806 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_3806 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_3806 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_3806 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (real-results)";
	text-transform: capitalize;
}





#stacks_in_3807-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3807-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3807-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3807-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3807-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3809-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_3809-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_3809-wrapper a,
#stacks_in_3809-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_3809-wrapper a:hover,
#stacks_in_3809-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_3809-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_3849-wrapper {
	
	
	
}

#stacks_in_3849-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_3849-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_3849-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3849-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3849-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3849-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3849-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3849-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_3874-wrapper {
	
}

#stacks_in_3874-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_3874-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_3874-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_3874-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_3874-wrapper.fdy-container {
	max-width: 960px;
  }
}











#stacks_in_3885-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3885-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3885-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3885-margins.padding-advanced {
	padding: 1.00rem 0.00rem 7.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3885-margins.padding-advanced {
		padding: 1.00rem 3.00rem 10.00rem 3.00rem;
	}
	
}

@media (min-width: 992px) {
	
	#stacks_in_3885-margins.padding-advanced {
		padding: 1.00rem 11.00rem 10.00rem 11.00rem;
	}
	
}

@media (min-width: 1200px) {
	
	#stacks_in_3885-margins.padding-advanced {
		padding: 1.00rem 23.00rem 13.00rem 23.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_3886-wrapper,
#stacks_in_3886-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_3886-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_3886-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_3886-wrapper {
	background-position: center center;
}


#stacks_in_3886-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_3886-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_3886-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_3886-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_3886-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_3886-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_3886-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_3886-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_3886-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_3886-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_3886-wrapper.bkg-preset {
	background: var(--bs-success);
}

#stacks_in_3886-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_3886-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_3886-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_3886-wrapper.custom-corners,
#stacks_in_3886-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_3886-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_3886-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_3886-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_3886-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_3886-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_3877-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3877-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3877-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3877-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3877-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_3888-header {
	
	font-weight: 900;
	
	
	
	
	font-size: 1.50rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_3888-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_3888-header {
	margin-bottom: 0;
}








.stacks_in_6279-container {
	
	
	

	
	
	

}








#stacks_in_6297-wrapper,
#stacks_in_6297-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_6297-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_6297-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_6297-wrapper {
	background-position: center center;
}


#stacks_in_6297-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_6297-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_6297-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_6297-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_6297-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_6297-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_6297-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_6297-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_6297-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_6297-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_6297-wrapper.bkg-preset {
	background: var(--bs-secondary);
}

#stacks_in_6297-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_6297-wrapper.bkg-gradient-two {
	background: rgba(75, 126, 37, 0.70);
	background: linear-gradient(0deg, rgba(75, 126, 37, 0.70) 0%, rgba(75, 126, 37, 1.00) 100%);
}

#stacks_in_6297-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_6297-wrapper.custom-corners,
#stacks_in_6297-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_6297-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_6297-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_6297-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_6297-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_6297-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_6299-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6299-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6299-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6299-margins.padding-advanced {
	padding: 4.00rem 0.00rem 3.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6299-margins.padding-advanced {
		padding: 8.00rem 1.00rem 8.00rem 1.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_6299-margins.padding-advanced {
		padding: 10.00rem 10.00rem 10.00rem 10.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_6283-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





h3.stacks_in_6289-header {
	
	font-weight: 900;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_6289-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_6289-header {
	margin-bottom: 0;
}






.stacks_in_6289-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_6289-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6289-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6289-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6289-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6289-header {
		font-size: 3.00rem;
	}
}



#stacks_in_6303-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6303-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6303-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6303-margins.padding-advanced {
	padding: 2.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6295-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_6295-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6301-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6301-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6301-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6301-margins.padding-advanced {
	padding: 0.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6301-margins.padding-advanced {
		padding: 0.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6293-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}







#stacks_in_6293-wrapper {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	#stacks_in_6293-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_6293-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_6293-wrapper {
		font-size: 1.60rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_6293-wrapper {
		font-size: 1.60rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_6293-wrapper {
		font-size: 1.70rem;
	}
}



	#stacks_in_6293-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_8029-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8029-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_8029-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8029-margins.padding-advanced {
	padding: 0.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8029-margins.padding-advanced {
		padding: 1.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
	#stacks_in_8029-margins.padding-advanced {
		padding: 1.00rem 2.00rem 2.00rem 2.00rem;
	}
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8713-wrapper {
	
}

#stacks_in_8713-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_8713-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_8713-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_8713-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_8713-wrapper.fdy-container {
	max-width: 960px;
  }
}







#stacks_in_8031-wrapper,
#stacks_in_8031-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_8031-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_8031-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_8031-wrapper {
	background-position: center center;
}


#stacks_in_8031-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_8031-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_8031-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_8031-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_8031-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_8031-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_8031-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_8031-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_8031-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_8031-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_8031-wrapper.bkg-preset {
	background: var(--bs-info);
}

#stacks_in_8031-wrapper.bkg-solid-color {
	background: rgba(255, 255, 255, 0.20);
}

#stacks_in_8031-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_8031-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(255, 255, 255, 0.15), transparent 20%),
	radial-gradient(circle at 100% 0%, 
		 rgba(255, 255, 255, 0.15), transparent 100%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(255, 255, 255, 0.20), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(255, 255, 255, 0.25), transparent 40%);
}

#stacks_in_8031-wrapper.custom-corners,
#stacks_in_8031-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_8031-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_8031-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_8031-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_8031-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_8031-wrapper {
	
	
	border-color: var(--bs-primary) !important;
	
	
	
}








	

	








#stacks_in_8033-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8033-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8033-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8033-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_8035-wrapper .col {
		
	}
	
}








#stacks_in_8041-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8041-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_8041-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8041-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8041-margins.padding-advanced {
		padding: 1.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_8043-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_8043-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_8043-header {
	margin-bottom: 0;
}






.stacks_in_8043-header {
	font-size: 1.55rem;
}

@media (min-width: 576px) {
	.stacks_in_8043-header {
		font-size: 1.55rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8043-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8043-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8043-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8043-header {
		font-size: 2.00rem;
	}
}
 

#stacks_in_8488-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8488-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8488-wrapper.custom-radius,
#stacks_in_8488-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8488-wrapper .card-body {
	
	
}

#stacks_in_8488-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_8488-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8488-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8488-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8488-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8488-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8488-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8488-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8488-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8488-wrapper .card-header h1,
#stacks_in_8488-wrapper .card-header h2,
#stacks_in_8488-wrapper .card-header h3,
#stacks_in_8488-wrapper .card-header h4,
#stacks_in_8488-wrapper .card-header h5,
#stacks_in_8488-wrapper .card-header h6,
#stacks_in_8488-wrapper .card-header p:last-of-type,
#stacks_in_8488-wrapper .card-header small,
#stacks_in_8488-wrapper .card-footer h1,
#stacks_in_8488-wrapper .card-footer h2,
#stacks_in_8488-wrapper .card-footer h3,
#stacks_in_8488-wrapper .card-footer h4,
#stacks_in_8488-wrapper .card-footer h5,
#stacks_in_8488-wrapper .card-footer h6,
#stacks_in_8488-wrapper .card-footer p:last-of-type,
#stacks_in_8488-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8488-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8488-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8488-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8488-wrapper.card,
#stacks_in_8488-wrapper.card.custom-shadow,
#stacks_in_8488-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8488-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_8488-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_8488-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8488-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8488-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8488-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8488-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8488-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_8488-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_8548.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8548.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8548.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8548.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8548.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8548.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8548.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8548.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8548.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8548.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8046-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8046-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_8046-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8046-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.50rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8486-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}




/* Base Margins */
#stacks_in_8486-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8486-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8486-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8486-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8486-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8486-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




#stacks_in_8486-wrapper {
	font-size: 1.10rem;
}

@media (min-width: 576px) {
	#stacks_in_8486-wrapper {
		font-size: 1.10rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_8486-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_8486-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8486-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8486-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_8486-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8566-wrapper {
	
	
	
}

#stacks_in_8566-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8566-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8566-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8566-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8566-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8566-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8566-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8566-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8594-wrapper {
	
}

#stacks_in_8594-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_8594-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_8594-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_8594-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_8594-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_8595-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8595-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8595-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8595-margins.padding-advanced {
	padding: 3.00rem 0.00rem 3.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_8599-wrapper .col {
		
	}
	
}


#stacks_out_8603 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_8603 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_8603 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_8603 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_8603 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_8603 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_8603 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (satisfaction-text)";
	text-transform: capitalize;
}





#stacks_in_8605-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8605-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8605-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8605-margins.padding-advanced {
	padding: 2.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8605-margins.padding-advanced {
		padding: 2.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_8607-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_8607-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_8607-header {
	margin-bottom: 0;
}






.stacks_in_8607-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_8607-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8607-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8607-header {
		font-size: 1.40rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8607-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8607-header {
		font-size: 2.00rem;
	}
}



#stacks_in_8610-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8610-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8610-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8610-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


.stacks_in_8611-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_8611-list {
	
	color: var(--bs-white) !important;
	
	
	
}

.stacks_in_8611-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_8611-list a,
.stacks_in_8611-list a:visited,
.stacks_in_8611-list a:hover,
.stacks_in_8611-list a:active {
	text-decoration: none;
}

.stacks_in_8611-list a,
.stacks_in_8611-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_8611-list a:hover,
.stacks_in_8611-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_8611-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8611-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8611-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8611-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8611-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8611-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_8611-list .list-inline-item:not(:last-child) {

}

.stacks_in_8611-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_8611-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_8613-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8613-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_8615-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8615-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_8616-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8616-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_8617-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8617-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

#stacks_out_8619 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_8619 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_8619 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_8619 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_8619 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_8619 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_8619 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (satisfaction-text)";
	text-transform: capitalize;
}





#stacks_in_8621-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8621-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8621-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8621-margins.padding-advanced {
	padding: 2.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8621-margins.padding-advanced {
		padding: 2.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_8623-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(192, 237, 190, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_8623-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_8623-header {
	margin-bottom: 0;
}






.stacks_in_8623-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_8623-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8623-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8623-header {
		font-size: 1.40rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8623-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8623-header {
		font-size: 2.00rem;
	}
}



#stacks_in_8626-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8626-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8626-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8626-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


.stacks_in_8627-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_8627-list {
	
	color: var(--bs-white) !important;
	
	
	
}

.stacks_in_8627-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_8627-list a,
.stacks_in_8627-list a:visited,
.stacks_in_8627-list a:hover,
.stacks_in_8627-list a:active {
	text-decoration: none;
}

.stacks_in_8627-list a,
.stacks_in_8627-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_8627-list a:hover,
.stacks_in_8627-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_8627-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8627-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8627-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8627-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8627-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8627-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_8627-list .list-inline-item:not(:last-child) {

}

.stacks_in_8627-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_8627-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_8629-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8629-list-item.custom-icon-color .list-icon {
	color: rgba(192, 237, 190, 1.00) !important;
}

.stacks_in_8631-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8631-list-item.custom-icon-color .list-icon {
	color: rgba(192, 237, 190, 1.00) !important;
}

.stacks_in_8632-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8632-list-item.custom-icon-color .list-icon {
	color: rgba(192, 237, 190, 1.00) !important;
}

.stacks_in_8633-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8633-list-item.custom-icon-color .list-icon {
	color: rgba(192, 237, 190, 1.00) !important;
}


#stacks_in_7978-wrapper {
	
}

#stacks_in_7978-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_7978-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_7978-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_7978-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_7978-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_7976-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7976-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7976-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7976-margins.padding-advanced {
	padding: 3.00rem 0.00rem 3.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_7752-wrapper .col {
		
	}
	
}


 

#stacks_in_8675-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8675-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8675-wrapper.custom-radius,
#stacks_in_8675-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8675-wrapper .card-body {
	
	
}

#stacks_in_8675-wrapper .card-body {
	
	
	background: rgba(252, 58, 67, 0.15);
	
}



#stacks_in_8675-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8675-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8675-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8675-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8675-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8675-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8675-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8675-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8675-wrapper .card-header h1,
#stacks_in_8675-wrapper .card-header h2,
#stacks_in_8675-wrapper .card-header h3,
#stacks_in_8675-wrapper .card-header h4,
#stacks_in_8675-wrapper .card-header h5,
#stacks_in_8675-wrapper .card-header h6,
#stacks_in_8675-wrapper .card-header p:last-of-type,
#stacks_in_8675-wrapper .card-header small,
#stacks_in_8675-wrapper .card-footer h1,
#stacks_in_8675-wrapper .card-footer h2,
#stacks_in_8675-wrapper .card-footer h3,
#stacks_in_8675-wrapper .card-footer h4,
#stacks_in_8675-wrapper .card-footer h5,
#stacks_in_8675-wrapper .card-footer h6,
#stacks_in_8675-wrapper .card-footer p:last-of-type,
#stacks_in_8675-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8675-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8675-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8675-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8675-wrapper.card,
#stacks_in_8675-wrapper.card.custom-shadow,
#stacks_in_8675-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8675-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_8675-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_8675-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8675-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8675-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8675-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8675-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8675-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_8675-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_8690.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8690.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8690.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8690.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8690.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8690.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8690.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8690.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8690.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8690.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8677-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8677-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8677-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8677-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_8679-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(252, 194, 195, 1.00);
	
	
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_8679-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_8679-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_8679-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_8679-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_8679-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_8679-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_8679-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_8679-header {
	font-size: 1.85rem;
}

@media (min-width: 576px) {
	.stacks_in_8679-header {
		font-size: 1.85rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8679-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8679-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8679-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8679-header {
		font-size: 2.00rem;
	}
}



#stacks_in_8682-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8682-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8682-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8682-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


.stacks_in_8683-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_8683-list {
	
	color: var(--bs-white) !important;
	
	
	
}

.stacks_in_8683-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_8683-list a,
.stacks_in_8683-list a:visited,
.stacks_in_8683-list a:hover,
.stacks_in_8683-list a:active {
	text-decoration: none;
}

.stacks_in_8683-list a,
.stacks_in_8683-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_8683-list a:hover,
.stacks_in_8683-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_8683-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8683-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8683-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8683-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8683-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8683-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_8683-list .list-inline-item:not(:last-child) {

}

.stacks_in_8683-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_8683-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_8685-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8685-list-item.custom-icon-color .list-icon {
	color: rgba(251, 0, 7, 1.00) !important;
}

.stacks_in_8687-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8687-list-item.custom-icon-color .list-icon {
	color: rgba(251, 0, 7, 1.00) !important;
}

.stacks_in_8688-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8688-list-item.custom-icon-color .list-icon {
	color: rgba(251, 0, 7, 1.00) !important;
}

.stacks_in_8689-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_8689-list-item.custom-icon-color .list-icon {
	color: rgba(251, 0, 7, 1.00) !important;
}


#stacks_in_8692-wrapper {
	
	
	
}

#stacks_in_8692-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8692-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8692-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8692-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8692-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8692-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8692-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8692-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


 

#stacks_in_8634-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8634-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8634-wrapper.custom-radius,
#stacks_in_8634-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8634-wrapper .card-body {
	
	
}

#stacks_in_8634-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.15);
	
}



#stacks_in_8634-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8634-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8634-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8634-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8634-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8634-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8634-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8634-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8634-wrapper .card-header h1,
#stacks_in_8634-wrapper .card-header h2,
#stacks_in_8634-wrapper .card-header h3,
#stacks_in_8634-wrapper .card-header h4,
#stacks_in_8634-wrapper .card-header h5,
#stacks_in_8634-wrapper .card-header h6,
#stacks_in_8634-wrapper .card-header p:last-of-type,
#stacks_in_8634-wrapper .card-header small,
#stacks_in_8634-wrapper .card-footer h1,
#stacks_in_8634-wrapper .card-footer h2,
#stacks_in_8634-wrapper .card-footer h3,
#stacks_in_8634-wrapper .card-footer h4,
#stacks_in_8634-wrapper .card-footer h5,
#stacks_in_8634-wrapper .card-footer h6,
#stacks_in_8634-wrapper .card-footer p:last-of-type,
#stacks_in_8634-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8634-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8634-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8634-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8634-wrapper.card,
#stacks_in_8634-wrapper.card.custom-shadow,
#stacks_in_8634-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8634-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_8634-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_8634-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8634-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8634-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8634-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8634-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8634-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_8634-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_8644.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8644.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8644.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8644.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8644.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8644.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8644.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8644.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8644.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8644.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8695-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8695-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8695-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8695-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8698-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}







#stacks_in_8698-wrapper {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	#stacks_in_8698-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_8698-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_8698-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8698-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8698-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_8698-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8654-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8654-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8654-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8654-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8696-wrapper {
	
	
	
		
		
		color: var(--bs-success);
		
	
}







#stacks_in_8696-wrapper {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	#stacks_in_8696-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_8696-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_8696-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8696-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8696-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_8696-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8646-wrapper {
	
	
	
}

#stacks_in_8646-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8646-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8646-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8646-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8646-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8646-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8646-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8646-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6243-container {
	
	
	

	
	
	
	display: grid;
    grid-auto-flow: column;
		
		
			
			align-content: start;
			
			justify-content: center;
		
	

}









#stacks_in_6163-wrapper {
	
}

#stacks_in_6163-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_6163-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_6163-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_6163-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_6163-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_6267-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6267-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6267-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6267-margins.padding-advanced {
	padding: 3.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6267-margins.padding-advanced {
		padding: 5.00rem 0.00rem 5.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_6267-margins.padding-advanced {
		padding: 7.00rem 0.00rem 7.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_6234-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_6211-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6211-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6211-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6211-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6211-margins.padding-advanced {
		padding: 0.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_6265-svg svg {
	
	display: inline-block;
	
	
	
		
		fill: var(--bs-primary);
		
		
		
	
	
	
}

#stacks_in_6265-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_6265-svg svg {
	width: 100%;	
	max-width: 50px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_6265-svg svg {
		width: 100%;	
		max-width: 50px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_6265-svg svg {
		width: 100%;	
		max-width: 50px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_6265-svg svg {
		width: 100%;	
		max-width: 75px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_6265-svg svg {
		width: 100%;	
		max-width: 75px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_6265-svg svg {
		width: 100%;	
		max-width: 75px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_6265-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6265-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6265-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6265-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6265-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6265-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




h3.stacks_in_6263-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_6263-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_6263-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_6263-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_6263-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_6263-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_6263-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_6263-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_6263-header {
	font-size: 1.85rem;
}

@media (min-width: 576px) {
	.stacks_in_6263-header {
		font-size: 1.85rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6263-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6263-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6263-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6263-header {
		font-size: 3.00rem;
	}
}



 

#stacks_in_6165-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6165-wrapper .card-header {
	
	
	background-color: rgba(174, 215, 248, 1.00);
	
}

#stacks_in_6165-wrapper.custom-radius,
#stacks_in_6165-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6165-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_6165-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_6165-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6165-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6165-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6165-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6165-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6165-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6165-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6165-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6165-wrapper .card-header h1,
#stacks_in_6165-wrapper .card-header h2,
#stacks_in_6165-wrapper .card-header h3,
#stacks_in_6165-wrapper .card-header h4,
#stacks_in_6165-wrapper .card-header h5,
#stacks_in_6165-wrapper .card-header h6,
#stacks_in_6165-wrapper .card-header p:last-of-type,
#stacks_in_6165-wrapper .card-header small,
#stacks_in_6165-wrapper .card-footer h1,
#stacks_in_6165-wrapper .card-footer h2,
#stacks_in_6165-wrapper .card-footer h3,
#stacks_in_6165-wrapper .card-footer h4,
#stacks_in_6165-wrapper .card-footer h5,
#stacks_in_6165-wrapper .card-footer h6,
#stacks_in_6165-wrapper .card-footer p:last-of-type,
#stacks_in_6165-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6165-wrapper.card {
	
	
	border-color: rgba(80, 131, 171, 1.00) !important;
	
}

#stacks_in_6165-wrapper.card.custom-shadow {
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.35);
}

#stacks_in_6165-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6165-wrapper.card,
#stacks_in_6165-wrapper.card.custom-shadow,
#stacks_in_6165-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6165-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6165-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6165-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6165-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6165-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6165-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6165-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6165-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6165-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6169-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.20rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6169-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6169-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_6172.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6172.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6172.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6172.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6172.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6172.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6172.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6172.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6172.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6172.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_6166-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_6166-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_6166-wrapper a,
#stacks_in_6166-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6166-wrapper a:hover,
#stacks_in_6166-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6166-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6174-wrapper {
	
	
	
}

#stacks_in_6174-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6174-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6174-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6174-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6174-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6174-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6174-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6174-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}
 

#stacks_in_6176-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6176-wrapper .card-header {
	
	
	background-color: rgba(174, 215, 248, 1.00);
	
}

#stacks_in_6176-wrapper.custom-radius,
#stacks_in_6176-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6176-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_6176-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_6176-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6176-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6176-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6176-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6176-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6176-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6176-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6176-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6176-wrapper .card-header h1,
#stacks_in_6176-wrapper .card-header h2,
#stacks_in_6176-wrapper .card-header h3,
#stacks_in_6176-wrapper .card-header h4,
#stacks_in_6176-wrapper .card-header h5,
#stacks_in_6176-wrapper .card-header h6,
#stacks_in_6176-wrapper .card-header p:last-of-type,
#stacks_in_6176-wrapper .card-header small,
#stacks_in_6176-wrapper .card-footer h1,
#stacks_in_6176-wrapper .card-footer h2,
#stacks_in_6176-wrapper .card-footer h3,
#stacks_in_6176-wrapper .card-footer h4,
#stacks_in_6176-wrapper .card-footer h5,
#stacks_in_6176-wrapper .card-footer h6,
#stacks_in_6176-wrapper .card-footer p:last-of-type,
#stacks_in_6176-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6176-wrapper.card {
	
	
	border-color: rgba(80, 131, 171, 1.00) !important;
	
}

#stacks_in_6176-wrapper.card.custom-shadow {
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.35);
}

#stacks_in_6176-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6176-wrapper.card,
#stacks_in_6176-wrapper.card.custom-shadow,
#stacks_in_6176-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6176-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6176-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6176-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6176-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6176-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6176-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6176-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6176-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6176-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6180-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.20rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6180-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6180-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_6183.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6183.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6183.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6183.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6183.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6183.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6183.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6183.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6183.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6183.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_6178-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_6178-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_6178-wrapper a,
#stacks_in_6178-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6178-wrapper a:hover,
#stacks_in_6178-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6178-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6185-wrapper {
	
	
	
}

#stacks_in_6185-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6185-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6185-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6185-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6185-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6185-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6185-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6185-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}
 

#stacks_in_6187-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6187-wrapper .card-header {
	
	
	background-color: rgba(174, 215, 248, 1.00);
	
}

#stacks_in_6187-wrapper.custom-radius,
#stacks_in_6187-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6187-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_6187-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_6187-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6187-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6187-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6187-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6187-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6187-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6187-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6187-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6187-wrapper .card-header h1,
#stacks_in_6187-wrapper .card-header h2,
#stacks_in_6187-wrapper .card-header h3,
#stacks_in_6187-wrapper .card-header h4,
#stacks_in_6187-wrapper .card-header h5,
#stacks_in_6187-wrapper .card-header h6,
#stacks_in_6187-wrapper .card-header p:last-of-type,
#stacks_in_6187-wrapper .card-header small,
#stacks_in_6187-wrapper .card-footer h1,
#stacks_in_6187-wrapper .card-footer h2,
#stacks_in_6187-wrapper .card-footer h3,
#stacks_in_6187-wrapper .card-footer h4,
#stacks_in_6187-wrapper .card-footer h5,
#stacks_in_6187-wrapper .card-footer h6,
#stacks_in_6187-wrapper .card-footer p:last-of-type,
#stacks_in_6187-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6187-wrapper.card {
	
	
	border-color: rgba(80, 131, 171, 1.00) !important;
	
}

#stacks_in_6187-wrapper.card.custom-shadow {
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.35);
}

#stacks_in_6187-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6187-wrapper.card,
#stacks_in_6187-wrapper.card.custom-shadow,
#stacks_in_6187-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6187-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6187-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6187-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6187-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6187-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6187-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6187-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6187-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6187-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6191-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.20rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6191-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6191-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_6194.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6194.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6194.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6194.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6194.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6194.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6194.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6194.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6194.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6194.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_6188-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_6188-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_6188-wrapper a,
#stacks_in_6188-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6188-wrapper a:hover,
#stacks_in_6188-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6188-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6196-wrapper {
	
	
	
}

#stacks_in_6196-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6196-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6196-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6196-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6196-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6196-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6196-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6196-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}
 

#stacks_in_6198-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6198-wrapper .card-header {
	
	
	background-color: rgba(174, 215, 248, 1.00);
	
}

#stacks_in_6198-wrapper.custom-radius,
#stacks_in_6198-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6198-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_6198-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_6198-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6198-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6198-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6198-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6198-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6198-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6198-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6198-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6198-wrapper .card-header h1,
#stacks_in_6198-wrapper .card-header h2,
#stacks_in_6198-wrapper .card-header h3,
#stacks_in_6198-wrapper .card-header h4,
#stacks_in_6198-wrapper .card-header h5,
#stacks_in_6198-wrapper .card-header h6,
#stacks_in_6198-wrapper .card-header p:last-of-type,
#stacks_in_6198-wrapper .card-header small,
#stacks_in_6198-wrapper .card-footer h1,
#stacks_in_6198-wrapper .card-footer h2,
#stacks_in_6198-wrapper .card-footer h3,
#stacks_in_6198-wrapper .card-footer h4,
#stacks_in_6198-wrapper .card-footer h5,
#stacks_in_6198-wrapper .card-footer h6,
#stacks_in_6198-wrapper .card-footer p:last-of-type,
#stacks_in_6198-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6198-wrapper.card {
	
	
	border-color: rgba(80, 131, 171, 1.00) !important;
	
}

#stacks_in_6198-wrapper.card.custom-shadow {
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.35);
}

#stacks_in_6198-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6198-wrapper.card,
#stacks_in_6198-wrapper.card.custom-shadow,
#stacks_in_6198-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6198-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6198-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6198-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6198-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6198-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6198-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6198-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6198-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6198-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6202-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.20rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6202-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6202-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_6205.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6205.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6205.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6205.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6205.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6205.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6205.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6205.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6205.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6205.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_6199-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_6199-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_6199-wrapper a,
#stacks_in_6199-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6199-wrapper a:hover,
#stacks_in_6199-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6199-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6207-wrapper {
	
	
	
}

#stacks_in_6207-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6207-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6207-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6207-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6207-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6207-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6207-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6207-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}
 

#stacks_in_6145-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6145-wrapper .card-header {
	
	
	background-color: rgba(174, 215, 248, 1.00);
	
}

#stacks_in_6145-wrapper.custom-radius,
#stacks_in_6145-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6145-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_6145-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_6145-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6145-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6145-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6145-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6145-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6145-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6145-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6145-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6145-wrapper .card-header h1,
#stacks_in_6145-wrapper .card-header h2,
#stacks_in_6145-wrapper .card-header h3,
#stacks_in_6145-wrapper .card-header h4,
#stacks_in_6145-wrapper .card-header h5,
#stacks_in_6145-wrapper .card-header h6,
#stacks_in_6145-wrapper .card-header p:last-of-type,
#stacks_in_6145-wrapper .card-header small,
#stacks_in_6145-wrapper .card-footer h1,
#stacks_in_6145-wrapper .card-footer h2,
#stacks_in_6145-wrapper .card-footer h3,
#stacks_in_6145-wrapper .card-footer h4,
#stacks_in_6145-wrapper .card-footer h5,
#stacks_in_6145-wrapper .card-footer h6,
#stacks_in_6145-wrapper .card-footer p:last-of-type,
#stacks_in_6145-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6145-wrapper.card {
	
	
	border-color: rgba(80, 131, 171, 1.00) !important;
	
}

#stacks_in_6145-wrapper.card.custom-shadow {
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.35);
}

#stacks_in_6145-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6145-wrapper.card,
#stacks_in_6145-wrapper.card.custom-shadow,
#stacks_in_6145-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6145-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6145-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6145-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6145-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6145-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6145-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6145-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6145-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6145-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6135-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.20rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6135-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6135-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_6152.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6152.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6152.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6152.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6152.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6152.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6152.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6152.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6152.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6152.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_6133-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_6133-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_6133-wrapper a,
#stacks_in_6133-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6133-wrapper a:hover,
#stacks_in_6133-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6133-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6154-wrapper {
	
	
	
}

#stacks_in_6154-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6154-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6154-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6154-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6154-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6154-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6154-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6154-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_2588-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2588-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2588-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2588-margins.padding-advanced {
	padding: 0.00rem 0.00rem 5.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_2588-margins.padding-advanced {
		padding: 0.00rem 0.00rem 5.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
	#stacks_in_2588-margins.padding-advanced {
		padding: 0.00rem 5.00rem 8.00rem 5.00rem;
	}
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 






.stacks_in_8928-container {
	
	
	

	
	
	

}








#stacks_in_6728-wrapper,
#stacks_in_6728-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_6728-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_6728-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_6728-wrapper {
	background-position: center center;
}


#stacks_in_6728-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_6728-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_6728-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_6728-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_6728-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_6728-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_6728-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_6728-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_6728-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_6728-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_6728-wrapper.bkg-preset {
	background: var(--bs-gray-100);
}

#stacks_in_6728-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_6728-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_6728-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_6728-wrapper.custom-corners,
#stacks_in_6728-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_6728-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_6728-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_6728-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_6728-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_6728-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_7980-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7980-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7980-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7980-margins.padding-advanced {
	padding: 3.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7980-margins.padding-advanced {
		padding: 6.00rem 0.00rem 5.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_7980-margins.padding-advanced {
		padding: 6.00rem 0.00rem 6.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_2591-wrapper {
	
}

#stacks_in_2591-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_2591-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_2591-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_2591-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_2591-wrapper.fdy-container {
	max-width: 960px;
  }
}











@media (max-width: 575px) {
	
	#stacks_in_6400-wrapper .col {
		
	}
	
}





#stacks_in_2596-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2596-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2596-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2596-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_2355-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_2355-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_2355-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_2355-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_2355-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_2355-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_2355-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_2355-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_2355-header {
	font-size: 1.85rem;
}

@media (min-width: 576px) {
	.stacks_in_2355-header {
		font-size: 1.85rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_2355-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_2355-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2355-header {
		font-size: 3.25rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2355-header {
		font-size: 3.25rem;
	}
}



#stacks_in_6572-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6572-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6572-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6572-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6572-margins.padding-advanced {
		padding: 0.00rem 5.00rem 0.00rem 5.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_6570-wrapper,
#stacks_in_6570-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_6570-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_6570-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_6570-wrapper {
	background-position: center center;
}


#stacks_in_6570-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_6570-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_6570-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_6570-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_6570-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_6570-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_6570-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_6570-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_6570-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_6570-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_6570-wrapper.bkg-preset {
	background: var(--bs-white);
}

#stacks_in_6570-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_6570-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_6570-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_6570-wrapper.custom-corners,
#stacks_in_6570-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_6570-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_6570-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_6570-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_6570-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_6570-wrapper {
	
	
	border-color: var(--bs-primary) !important;
	
	
	
}








	

	








#stacks_in_6566-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6566-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6566-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6566-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6566-margins.padding-advanced {
		padding: 1.00rem 1.00rem 1.00rem 1.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_6566-margins.padding-advanced {
		padding: 1.00rem 1.00rem 1.00rem 1.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6567-wrapper {
	
	
	
		
		
		color: var(--bs-danger);
		
	
}







#stacks_in_6567-wrapper {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	#stacks_in_6567-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_6567-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_6567-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_6567-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_6567-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_6567-wrapper p:last-of-type {
		margin-bottom: 0;
	}




#stacks_out_6594 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6594 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6594 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6594 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6594 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6594 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6594 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (why-choose)";
	text-transform: capitalize;
}





#stacks_in_6596-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(28, 138, 255, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_6598-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6598-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6598-wrapper.custom-radius,
#stacks_in_6598-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6598-wrapper .card-body {
	
	
}

#stacks_in_6598-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_6598-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6598-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6598-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6598-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6598-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6598-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6598-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6598-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6598-wrapper .card-header h1,
#stacks_in_6598-wrapper .card-header h2,
#stacks_in_6598-wrapper .card-header h3,
#stacks_in_6598-wrapper .card-header h4,
#stacks_in_6598-wrapper .card-header h5,
#stacks_in_6598-wrapper .card-header h6,
#stacks_in_6598-wrapper .card-header p:last-of-type,
#stacks_in_6598-wrapper .card-header small,
#stacks_in_6598-wrapper .card-footer h1,
#stacks_in_6598-wrapper .card-footer h2,
#stacks_in_6598-wrapper .card-footer h3,
#stacks_in_6598-wrapper .card-footer h4,
#stacks_in_6598-wrapper .card-footer h5,
#stacks_in_6598-wrapper .card-footer h6,
#stacks_in_6598-wrapper .card-footer p:last-of-type,
#stacks_in_6598-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6598-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6598-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6598-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6598-wrapper.card,
#stacks_in_6598-wrapper.card.custom-shadow,
#stacks_in_6598-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6598-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6598-wrapper .card-footer {
	
}

 

#stacks_in_6598-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6635-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6635-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6635-header {
	margin-bottom: 0;
}






.stacks_in_6635-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_6635-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6635-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6635-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6635-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6635-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_6637.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6637.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6637.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6637.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6637.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6637.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6637.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6637.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6637.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6637.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_6600-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	
	
	
	-webkit-background-clip: text;
	-webkit-box-decoration-break: clone;
	-webkit-box-direction: normal;
	-webkit-text-fill-color: rgba(0, 0, 0, 0);
	background-attachment: scroll;
	background-clip: text;
	background-color: rgba(0, 0, 0, 0);
	background-image: linear-gradient(135deg, rgba(13, 75, 161, 1.00) 0%, rgba(90, 216, 241, 1.00) 33%, rgba(165, 216, 255, 1.00) 66%, rgba(28, 138, 255, 1.00) 100%);
	background-origin: padding-box;
	background-size: auto;
	box-sizing: border-box;
	display: inline-block;
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6600-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6600-header {
	margin-bottom: 0;
}






.stacks_in_6600-header {
	font-size: 1.70rem;
}

@media (min-width: 576px) {
	.stacks_in_6600-header {
		font-size: 1.70rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6600-header {
		font-size: 1.60rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6600-header {
		font-size: 1.80rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6600-header {
		font-size: 1.80rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6600-header {
		font-size: 1.80rem;
	}
}
#stacks_out_6603 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6603 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6603 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6603 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6603 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6603 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6603 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (why-choose-text)";
	text-transform: capitalize;
}





#stacks_in_6604-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6604-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6604-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6604-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6604-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6606-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_6606-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_6606-wrapper a,
#stacks_in_6606-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6606-wrapper a:hover,
#stacks_in_6606-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6606-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6609-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(28, 138, 255, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_6610-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6610-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6610-wrapper.custom-radius,
#stacks_in_6610-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6610-wrapper .card-body {
	
	
}

#stacks_in_6610-wrapper .card-body {
	
	
	background: rgba(218, 240, 255, 1.00);
	
}



#stacks_in_6610-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6610-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6610-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6610-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6610-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6610-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6610-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6610-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6610-wrapper .card-header h1,
#stacks_in_6610-wrapper .card-header h2,
#stacks_in_6610-wrapper .card-header h3,
#stacks_in_6610-wrapper .card-header h4,
#stacks_in_6610-wrapper .card-header h5,
#stacks_in_6610-wrapper .card-header h6,
#stacks_in_6610-wrapper .card-header p:last-of-type,
#stacks_in_6610-wrapper .card-header small,
#stacks_in_6610-wrapper .card-footer h1,
#stacks_in_6610-wrapper .card-footer h2,
#stacks_in_6610-wrapper .card-footer h3,
#stacks_in_6610-wrapper .card-footer h4,
#stacks_in_6610-wrapper .card-footer h5,
#stacks_in_6610-wrapper .card-footer h6,
#stacks_in_6610-wrapper .card-footer p:last-of-type,
#stacks_in_6610-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6610-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6610-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6610-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6610-wrapper.card,
#stacks_in_6610-wrapper.card.custom-shadow,
#stacks_in_6610-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6610-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6610-wrapper .card-footer {
	
}

 

#stacks_in_6610-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6639-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6639-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6639-header {
	margin-bottom: 0;
}






.stacks_in_6639-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_6639-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6639-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6639-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6639-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6639-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_6641.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6641.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6641.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6641.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6641.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6641.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6641.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6641.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6641.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6641.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_6612 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6612 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6612 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6612 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6612 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6612 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6612 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (why-choose-text2)";
	text-transform: capitalize;
}





#stacks_in_6614-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6614-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6614-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6614-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6614-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6616-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_6616-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_6616-wrapper a,
#stacks_in_6616-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6616-wrapper a:hover,
#stacks_in_6616-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6616-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6643-wrapper {
	
	
	
}

#stacks_in_6643-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6643-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6643-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6643-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6643-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6643-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6643-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6643-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_6645-wrapper {
	
	
	
}

#stacks_in_6645-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6645-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6645-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6645-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6645-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6645-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6645-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6645-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_out_6403 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6403 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6403 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6403 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6403 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6403 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6403 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (why-choose)";
	text-transform: capitalize;
}





#stacks_in_6405-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(75, 126, 37, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_6407-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6407-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6407-wrapper.custom-radius,
#stacks_in_6407-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6407-wrapper .card-body {
	
	
}

#stacks_in_6407-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_6407-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6407-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6407-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6407-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6407-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6407-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6407-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6407-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6407-wrapper .card-header h1,
#stacks_in_6407-wrapper .card-header h2,
#stacks_in_6407-wrapper .card-header h3,
#stacks_in_6407-wrapper .card-header h4,
#stacks_in_6407-wrapper .card-header h5,
#stacks_in_6407-wrapper .card-header h6,
#stacks_in_6407-wrapper .card-header p:last-of-type,
#stacks_in_6407-wrapper .card-header small,
#stacks_in_6407-wrapper .card-footer h1,
#stacks_in_6407-wrapper .card-footer h2,
#stacks_in_6407-wrapper .card-footer h3,
#stacks_in_6407-wrapper .card-footer h4,
#stacks_in_6407-wrapper .card-footer h5,
#stacks_in_6407-wrapper .card-footer h6,
#stacks_in_6407-wrapper .card-footer p:last-of-type,
#stacks_in_6407-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6407-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6407-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6407-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6407-wrapper.card,
#stacks_in_6407-wrapper.card.custom-shadow,
#stacks_in_6407-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6407-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6407-wrapper .card-footer {
	
}

 

#stacks_in_6407-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6522-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6522-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6522-header {
	margin-bottom: 0;
}






.stacks_in_6522-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_6522-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6522-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6522-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6522-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6522-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_6524.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6524.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6524.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6524.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6524.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6524.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6524.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6524.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6524.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6524.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_6546-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-secondary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6546-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6546-header {
	margin-bottom: 0;
}






.stacks_in_6546-header {
	font-size: 1.70rem;
}

@media (min-width: 576px) {
	.stacks_in_6546-header {
		font-size: 1.70rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6546-header {
		font-size: 1.60rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6546-header {
		font-size: 1.80rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6546-header {
		font-size: 1.80rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6546-header {
		font-size: 1.80rem;
	}
}
#stacks_out_6863 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6863 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6863 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6863 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6863 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6863 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6863 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (why-choose-text)";
	text-transform: capitalize;
}





#stacks_in_6864-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6864-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6864-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6864-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6864-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6866-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_6866-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_6866-wrapper a,
#stacks_in_6866-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6866-wrapper a:hover,
#stacks_in_6866-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6866-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6869-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(75, 126, 37, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_6870-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6870-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6870-wrapper.custom-radius,
#stacks_in_6870-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6870-wrapper .card-body {
	
	
}

#stacks_in_6870-wrapper .card-body {
	
	
	background: rgba(75, 126, 37, 0.25);
	
}



#stacks_in_6870-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6870-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6870-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6870-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6870-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6870-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6870-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6870-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6870-wrapper .card-header h1,
#stacks_in_6870-wrapper .card-header h2,
#stacks_in_6870-wrapper .card-header h3,
#stacks_in_6870-wrapper .card-header h4,
#stacks_in_6870-wrapper .card-header h5,
#stacks_in_6870-wrapper .card-header h6,
#stacks_in_6870-wrapper .card-header p:last-of-type,
#stacks_in_6870-wrapper .card-header small,
#stacks_in_6870-wrapper .card-footer h1,
#stacks_in_6870-wrapper .card-footer h2,
#stacks_in_6870-wrapper .card-footer h3,
#stacks_in_6870-wrapper .card-footer h4,
#stacks_in_6870-wrapper .card-footer h5,
#stacks_in_6870-wrapper .card-footer h6,
#stacks_in_6870-wrapper .card-footer p:last-of-type,
#stacks_in_6870-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6870-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6870-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6870-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6870-wrapper.card,
#stacks_in_6870-wrapper.card.custom-shadow,
#stacks_in_6870-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6870-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6870-wrapper .card-footer {
	
}

 

#stacks_in_6870-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6879-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6879-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6879-header {
	margin-bottom: 0;
}






.stacks_in_6879-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_6879-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6879-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6879-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6879-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6879-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_6881.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6881.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6881.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6881.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6881.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6881.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6881.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6881.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6881.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6881.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_7986 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7986 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7986 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7986 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7986 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7986 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7986 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (why-choose-text2)";
	text-transform: capitalize;
}





#stacks_in_7987-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7987-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7987-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7987-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7987-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_7989-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_7989-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_7989-wrapper a,
#stacks_in_7989-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_7989-wrapper a:hover,
#stacks_in_7989-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_7989-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6883-wrapper {
	
	
	
}

#stacks_in_6883-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6883-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6883-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6883-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6883-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6883-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6883-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6883-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_6526-wrapper {
	
	
	
}

#stacks_in_6526-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6526-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6526-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6526-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6526-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6526-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6526-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6526-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_6726-wrapper {
	
}

#stacks_in_6726-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_6726-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_6726-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_6726-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_6726-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_6724-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6724-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6724-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6724-margins.padding-advanced {
	padding: 3.00rem 0.00rem 3.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6724-margins.padding-advanced {
		padding: 7.00rem 0.00rem 7.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_6656-wrapper,
#stacks_in_6656-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_6656-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_6656-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_6656-wrapper {
	background-position: center center;
}


#stacks_in_6656-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_6656-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_6656-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_6656-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_6656-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_6656-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_6656-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_6656-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_6656-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_6656-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_6656-wrapper.bkg-preset {
	background: var(--bs-white);
}

#stacks_in_6656-wrapper.bkg-solid-color {
	background: rgba(251, 0, 7, 0.20);
}

#stacks_in_6656-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_6656-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_6656-wrapper.custom-corners,
#stacks_in_6656-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_6656-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_6656-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_6656-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_6656-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_6656-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
	box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.33);
	
}








	

	











@media (max-width: 575px) {
	
	#stacks_in_6684-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_6712-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6712-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6712-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6712-margins.padding-advanced {
	padding: 2.00rem 2.00rem 2.00rem 2.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_6698-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6698-wrapper .card-header {
	
	
	background-color: rgba(127, 73, 246, 1.00);
	
}

#stacks_in_6698-wrapper.custom-radius,
#stacks_in_6698-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6698-wrapper .card-body {
	
	
}

#stacks_in_6698-wrapper .card-body {
	
	
	background: rgba(251, 0, 7, 0.10);
	
}



#stacks_in_6698-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6698-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6698-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6698-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6698-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6698-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6698-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6698-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6698-wrapper .card-header h1,
#stacks_in_6698-wrapper .card-header h2,
#stacks_in_6698-wrapper .card-header h3,
#stacks_in_6698-wrapper .card-header h4,
#stacks_in_6698-wrapper .card-header h5,
#stacks_in_6698-wrapper .card-header h6,
#stacks_in_6698-wrapper .card-header p:last-of-type,
#stacks_in_6698-wrapper .card-header small,
#stacks_in_6698-wrapper .card-footer h1,
#stacks_in_6698-wrapper .card-footer h2,
#stacks_in_6698-wrapper .card-footer h3,
#stacks_in_6698-wrapper .card-footer h4,
#stacks_in_6698-wrapper .card-footer h5,
#stacks_in_6698-wrapper .card-footer h6,
#stacks_in_6698-wrapper .card-footer p:last-of-type,
#stacks_in_6698-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6698-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6698-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6698-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6698-wrapper.card,
#stacks_in_6698-wrapper.card.custom-shadow,
#stacks_in_6698-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6698-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6698-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6698-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6698-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6698-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6698-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6698-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6698-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6698-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_6708.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6708.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6708.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6708.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6708.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6708.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6708.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6708.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6708.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6708.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_6718-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6718-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6718-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6718-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_8769.blu-svg{text-align:center}#stacks_in_8769.blu-svg svg{width:30.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_8769.blu-svg{text-align:center}#stacks_in_8769.blu-svg svg{width:30.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_8769.blu-svg{text-align:center}#stacks_in_8769.blu-svg svg{width:40.00px}}@media screen and (min-width:1000px){#stacks_in_8769.blu-svg{text-align:center}#stacks_in_8769.blu-svg svg{width:40.00px}}  #stacks_in_8769.blu-svg svg rectange,#stacks_in_8769.blu-svg svg circle,#stacks_in_8769.blu-svg svg ellipse,#stacks_in_8769.blu-svg svg polygon,#stacks_in_8769.blu-svg svg polyline,#stacks_in_8769.blu-svg svg path{fill:rgba(251, 0, 7, 1.00)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_8769.blu-svg svg:hover rectange,#stacks_in_8769.blu-svg svg:hover circle,#stacks_in_8769.blu-svg svg:hover ellipse,#stacks_in_8769.blu-svg svg:hover polygon,#stacks_in_8769.blu-svg svg:hover polyline,#stacks_in_8769.blu-svg svg:hover path{fill:rgba(251, 0, 7, 0.50)!important} #stacks_in_8769.blu-svg{float:none}#stacks_in_8769 a,#stacks_in_8769 svg{cursor:auto}



h3.stacks_in_6703-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-danger);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_6703-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_6703-header {
	margin-bottom: 0;
}






.stacks_in_6703-header {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	.stacks_in_6703-header {
		font-size: 1.10rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6703-header {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6703-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6703-header {
		font-size: 1.55rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6703-header {
		font-size: 1.55rem;
	}
}
#stacks_out_6872 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6872 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6872 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6872 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6872 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6872 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6872 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (why-our-text)";
	text-transform: capitalize;
}





#stacks_in_6702-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6702-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6702-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6702-margins.padding-advanced {
	padding: 1.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6702-margins.padding-advanced {
		padding: 1.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_6702-margins.padding-advanced {
		padding: 1.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6706-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









	#stacks_in_6706-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6710-wrapper {
	
	
	
}

#stacks_in_6710-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6710-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6710-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6710-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6710-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6710-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6710-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6710-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_6722-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6722-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6722-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6722-margins.padding-advanced {
	padding: 2.00rem 2.00rem 2.00rem 2.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_6669-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6669-wrapper .card-header {
	
	
	background-color: rgba(127, 73, 246, 1.00);
	
}

#stacks_in_6669-wrapper.custom-radius,
#stacks_in_6669-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6669-wrapper .card-body {
	
	
}

#stacks_in_6669-wrapper .card-body {
	
	
	background: rgba(75, 126, 37, 0.15);
	
}



#stacks_in_6669-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6669-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6669-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6669-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6669-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6669-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6669-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6669-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6669-wrapper .card-header h1,
#stacks_in_6669-wrapper .card-header h2,
#stacks_in_6669-wrapper .card-header h3,
#stacks_in_6669-wrapper .card-header h4,
#stacks_in_6669-wrapper .card-header h5,
#stacks_in_6669-wrapper .card-header h6,
#stacks_in_6669-wrapper .card-header p:last-of-type,
#stacks_in_6669-wrapper .card-header small,
#stacks_in_6669-wrapper .card-footer h1,
#stacks_in_6669-wrapper .card-footer h2,
#stacks_in_6669-wrapper .card-footer h3,
#stacks_in_6669-wrapper .card-footer h4,
#stacks_in_6669-wrapper .card-footer h5,
#stacks_in_6669-wrapper .card-footer h6,
#stacks_in_6669-wrapper .card-footer p:last-of-type,
#stacks_in_6669-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6669-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6669-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6669-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6669-wrapper.card,
#stacks_in_6669-wrapper.card.custom-shadow,
#stacks_in_6669-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6669-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6669-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6669-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6669-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6669-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6669-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6669-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6669-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6669-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_6676.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6676.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6676.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6676.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6676.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6676.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6676.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6676.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6676.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6676.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_6716-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6716-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6716-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6716-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_8773.blu-svg{text-align:center}#stacks_in_8773.blu-svg svg{width:30.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_8773.blu-svg{text-align:center}#stacks_in_8773.blu-svg svg{width:30.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_8773.blu-svg{text-align:center}#stacks_in_8773.blu-svg svg{width:40.00px}}@media screen and (min-width:1000px){#stacks_in_8773.blu-svg{text-align:center}#stacks_in_8773.blu-svg svg{width:40.00px}}  #stacks_in_8773.blu-svg svg rectange,#stacks_in_8773.blu-svg svg circle,#stacks_in_8773.blu-svg svg ellipse,#stacks_in_8773.blu-svg svg polygon,#stacks_in_8773.blu-svg svg polyline,#stacks_in_8773.blu-svg svg path{fill:rgba(75, 126, 37, 1.00)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_8773.blu-svg svg:hover rectange,#stacks_in_8773.blu-svg svg:hover circle,#stacks_in_8773.blu-svg svg:hover ellipse,#stacks_in_8773.blu-svg svg:hover polygon,#stacks_in_8773.blu-svg svg:hover polyline,#stacks_in_8773.blu-svg svg:hover path{fill:rgba(75, 126, 37, 0.80)!important} #stacks_in_8773.blu-svg{float:none}#stacks_in_8773 a,#stacks_in_8773 svg{cursor:auto}



h3.stacks_in_6680-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-secondary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_6680-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_6680-header {
	margin-bottom: 0;
}






.stacks_in_6680-header {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	.stacks_in_6680-header {
		font-size: 1.10rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6680-header {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6680-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6680-header {
		font-size: 1.55rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6680-header {
		font-size: 1.55rem;
	}
}
#stacks_out_7992 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7992 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7992 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7992 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7992 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7992 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7992 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (why-our-text)";
	text-transform: capitalize;
}





#stacks_in_6692-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6692-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6692-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6692-margins.padding-advanced {
	padding: 1.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6692-margins.padding-advanced {
		padding: 1.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_6692-margins.padding-advanced {
		padding: 1.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6670-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









	#stacks_in_6670-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6678-wrapper {
	
	
	
}

#stacks_in_6678-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6678-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6678-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6678-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6678-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6678-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6678-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6678-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_6736-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6736-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_6736-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6736-margins.padding-advanced {
	padding: 0.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6736-margins.padding-advanced {
		padding: 1.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
	#stacks_in_6736-margins.padding-advanced {
		padding: 1.00rem 2.00rem 2.00rem 2.00rem;
	}
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_6737-wrapper,
#stacks_in_6737-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_6737-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_6737-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_6737-wrapper {
	background-position: center center;
}


#stacks_in_6737-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_6737-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_6737-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_6737-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_6737-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_6737-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_6737-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_6737-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_6737-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_6737-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_6737-wrapper.bkg-preset {
	background: var(--bs-info);
}

#stacks_in_6737-wrapper.bkg-solid-color {
	background: rgba(237, 246, 255, 1.00);
}

#stacks_in_6737-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_6737-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(122, 174, 246, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(165, 216, 255, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(165, 216, 255, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(13, 75, 161, 1.00), transparent 80%);
}

#stacks_in_6737-wrapper.custom-corners,
#stacks_in_6737-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_6737-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_6737-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_6737-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_6737-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_6737-wrapper {
	
	
	border-color: var(--bs-primary) !important;
	
	
	
}








	

	








#stacks_in_6739-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6739-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6739-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6739-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






#stacks_in_6891-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6891-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_6891-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6891-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_6892-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6892-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6892-header {
	margin-bottom: 0;
}






.stacks_in_6892-header {
	font-size: 1.55rem;
}

@media (min-width: 576px) {
	.stacks_in_6892-header {
		font-size: 1.55rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6892-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6892-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6892-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6892-header {
		font-size: 2.00rem;
	}
}



#stacks_in_6748-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}




/* Base Margins */
#stacks_in_6748-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6748-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6748-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6748-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6748-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6748-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




#stacks_in_6748-wrapper {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	#stacks_in_6748-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_6748-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_6748-wrapper {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_6748-wrapper {
		font-size: 1.50rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_6748-wrapper {
		font-size: 1.60rem;
	}
}



	#stacks_in_6748-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6743-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6743-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_6743-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6743-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.50rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_6787-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6787-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6787-header {
	margin-bottom: 0;
}






.stacks_in_6787-header {
	font-size: 1.55rem;
}

@media (min-width: 576px) {
	.stacks_in_6787-header {
		font-size: 1.05rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6787-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6787-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6787-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6787-header {
		font-size: 2.00rem;
	}
}






@media (max-width: 575px) {
	
	#stacks_in_6817-wrapper .col {
		
	}
	
}


 

#stacks_in_6835-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6835-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6835-wrapper.custom-radius,
#stacks_in_6835-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6835-wrapper .card-body {
	
	
}

#stacks_in_6835-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_6835-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6835-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6835-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6835-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6835-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6835-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6835-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6835-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6835-wrapper .card-header h1,
#stacks_in_6835-wrapper .card-header h2,
#stacks_in_6835-wrapper .card-header h3,
#stacks_in_6835-wrapper .card-header h4,
#stacks_in_6835-wrapper .card-header h5,
#stacks_in_6835-wrapper .card-header h6,
#stacks_in_6835-wrapper .card-header p:last-of-type,
#stacks_in_6835-wrapper .card-header small,
#stacks_in_6835-wrapper .card-footer h1,
#stacks_in_6835-wrapper .card-footer h2,
#stacks_in_6835-wrapper .card-footer h3,
#stacks_in_6835-wrapper .card-footer h4,
#stacks_in_6835-wrapper .card-footer h5,
#stacks_in_6835-wrapper .card-footer h6,
#stacks_in_6835-wrapper .card-footer p:last-of-type,
#stacks_in_6835-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6835-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6835-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6835-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6835-wrapper.card,
#stacks_in_6835-wrapper.card.custom-shadow,
#stacks_in_6835-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6835-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6835-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6835-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6835-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6835-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6835-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6835-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6835-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6835-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_6839.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6839.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6839.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6839.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6839.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6839.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6839.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6839.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6839.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6839.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_6409 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6409 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6409 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6409 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6409 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6409 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6409 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (dual-process)";
	text-transform: capitalize;
}





#stacks_in_6836-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









	#stacks_in_6836-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6841-wrapper {
	
	
	
}

#stacks_in_6841-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6841-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6841-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6841-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6841-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6841-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6841-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6841-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


 

#stacks_in_6844-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6844-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6844-wrapper.custom-radius,
#stacks_in_6844-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6844-wrapper .card-body {
	
	
}

#stacks_in_6844-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_6844-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6844-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6844-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6844-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6844-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6844-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6844-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6844-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6844-wrapper .card-header h1,
#stacks_in_6844-wrapper .card-header h2,
#stacks_in_6844-wrapper .card-header h3,
#stacks_in_6844-wrapper .card-header h4,
#stacks_in_6844-wrapper .card-header h5,
#stacks_in_6844-wrapper .card-header h6,
#stacks_in_6844-wrapper .card-header p:last-of-type,
#stacks_in_6844-wrapper .card-header small,
#stacks_in_6844-wrapper .card-footer h1,
#stacks_in_6844-wrapper .card-footer h2,
#stacks_in_6844-wrapper .card-footer h3,
#stacks_in_6844-wrapper .card-footer h4,
#stacks_in_6844-wrapper .card-footer h5,
#stacks_in_6844-wrapper .card-footer h6,
#stacks_in_6844-wrapper .card-footer p:last-of-type,
#stacks_in_6844-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6844-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6844-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6844-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6844-wrapper.card,
#stacks_in_6844-wrapper.card.custom-shadow,
#stacks_in_6844-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6844-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6844-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6844-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6844-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6844-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6844-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6844-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6844-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6844-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_6849.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6849.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6849.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6849.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6849.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6849.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6849.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6849.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6849.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6849.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_6885 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6885 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6885 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6885 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6885 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6885 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6885 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (dual-process)";
	text-transform: capitalize;
}





#stacks_in_6846-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









	#stacks_in_6846-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6851-wrapper {
	
	
	
}

#stacks_in_6851-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6851-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6851-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6851-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6851-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6851-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6851-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6851-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


 

#stacks_in_6855-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6855-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6855-wrapper.custom-radius,
#stacks_in_6855-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6855-wrapper .card-body {
	
	
}

#stacks_in_6855-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_6855-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6855-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6855-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6855-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6855-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6855-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6855-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6855-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6855-wrapper .card-header h1,
#stacks_in_6855-wrapper .card-header h2,
#stacks_in_6855-wrapper .card-header h3,
#stacks_in_6855-wrapper .card-header h4,
#stacks_in_6855-wrapper .card-header h5,
#stacks_in_6855-wrapper .card-header h6,
#stacks_in_6855-wrapper .card-header p:last-of-type,
#stacks_in_6855-wrapper .card-header small,
#stacks_in_6855-wrapper .card-footer h1,
#stacks_in_6855-wrapper .card-footer h2,
#stacks_in_6855-wrapper .card-footer h3,
#stacks_in_6855-wrapper .card-footer h4,
#stacks_in_6855-wrapper .card-footer h5,
#stacks_in_6855-wrapper .card-footer h6,
#stacks_in_6855-wrapper .card-footer p:last-of-type,
#stacks_in_6855-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6855-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6855-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6855-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6855-wrapper.card,
#stacks_in_6855-wrapper.card.custom-shadow,
#stacks_in_6855-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6855-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6855-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6855-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6855-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6855-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6855-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6855-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6855-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6855-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_6859.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6859.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6859.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6859.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6859.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6859.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6859.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6859.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6859.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6859.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_6887 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6887 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6887 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6887 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6887 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6887 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6887 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (dual-process)";
	text-transform: capitalize;
}





#stacks_in_6857-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









	#stacks_in_6857-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6861-wrapper {
	
	
	
}

#stacks_in_6861-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6861-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6861-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6861-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6861-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6861-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6861-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6861-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


 

#stacks_in_6823-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6823-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6823-wrapper.custom-radius,
#stacks_in_6823-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6823-wrapper .card-body {
	
	
}

#stacks_in_6823-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_6823-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6823-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6823-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6823-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6823-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6823-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6823-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6823-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6823-wrapper .card-header h1,
#stacks_in_6823-wrapper .card-header h2,
#stacks_in_6823-wrapper .card-header h3,
#stacks_in_6823-wrapper .card-header h4,
#stacks_in_6823-wrapper .card-header h5,
#stacks_in_6823-wrapper .card-header h6,
#stacks_in_6823-wrapper .card-header p:last-of-type,
#stacks_in_6823-wrapper .card-header small,
#stacks_in_6823-wrapper .card-footer h1,
#stacks_in_6823-wrapper .card-footer h2,
#stacks_in_6823-wrapper .card-footer h3,
#stacks_in_6823-wrapper .card-footer h4,
#stacks_in_6823-wrapper .card-footer h5,
#stacks_in_6823-wrapper .card-footer h6,
#stacks_in_6823-wrapper .card-footer p:last-of-type,
#stacks_in_6823-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6823-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6823-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6823-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6823-wrapper.card,
#stacks_in_6823-wrapper.card.custom-shadow,
#stacks_in_6823-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6823-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6823-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6823-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6823-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6823-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6823-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6823-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6823-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6823-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_6830.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6830.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6830.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6830.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6830.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6830.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6830.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6830.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6830.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6830.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_6889 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6889 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6889 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6889 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6889 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6889 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6889 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (dual-process)";
	text-transform: capitalize;
}





#stacks_in_6824-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









	#stacks_in_6824-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6832-wrapper {
	
	
	
}

#stacks_in_6832-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6832-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6832-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6832-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6832-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6832-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6832-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6832-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






@media (max-width: 575px) {
	
	#stacks_in_6789-wrapper .col {
		
	}
	
}





h2.stacks_in_6806-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6806-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_6806-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_6806-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_6806-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_6806-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_6806-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_6806-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_6806-header {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	.stacks_in_6806-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6806-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6806-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6806-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6806-header {
		font-size: 1.50rem;
	}
}


.stacks_in_6809-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_6809-list {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_6809-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_6809-list a,
.stacks_in_6809-list a:visited,
.stacks_in_6809-list a:hover,
.stacks_in_6809-list a:active {
	text-decoration: none;
}

.stacks_in_6809-list a,
.stacks_in_6809-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_6809-list a:hover,
.stacks_in_6809-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_6809-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6809-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6809-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6809-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6809-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6809-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_6809-list .list-inline-item:not(:last-child) {

}

.stacks_in_6809-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_6809-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_6810-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_6810-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_6812-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_6812-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_6813-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_6813-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_6816-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_6816-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_6814-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_6814-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




h2.stacks_in_7995-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7995-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_7995-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_7995-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_7995-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_7995-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_7995-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_7995-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_7995-header {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	.stacks_in_7995-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7995-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7995-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7995-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7995-header {
		font-size: 1.50rem;
	}
}


.stacks_in_6798-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_6798-list {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_6798-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_6798-list a,
.stacks_in_6798-list a:visited,
.stacks_in_6798-list a:hover,
.stacks_in_6798-list a:active {
	text-decoration: none;
}

.stacks_in_6798-list a,
.stacks_in_6798-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_6798-list a:hover,
.stacks_in_6798-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_6798-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6798-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6798-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6798-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6798-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6798-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_6798-list .list-inline-item:not(:last-child) {

}

.stacks_in_6798-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_6798-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_6782-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_6782-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_6784-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_6784-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_6801-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_6801-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_6802-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_6802-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

 

#stacks_in_6908-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6908-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6908-wrapper.custom-radius,
#stacks_in_6908-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6908-wrapper .card-body {
	
	
}

#stacks_in_6908-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_6908-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6908-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6908-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6908-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6908-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6908-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6908-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6908-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6908-wrapper .card-header h1,
#stacks_in_6908-wrapper .card-header h2,
#stacks_in_6908-wrapper .card-header h3,
#stacks_in_6908-wrapper .card-header h4,
#stacks_in_6908-wrapper .card-header h5,
#stacks_in_6908-wrapper .card-header h6,
#stacks_in_6908-wrapper .card-header p:last-of-type,
#stacks_in_6908-wrapper .card-header small,
#stacks_in_6908-wrapper .card-footer h1,
#stacks_in_6908-wrapper .card-footer h2,
#stacks_in_6908-wrapper .card-footer h3,
#stacks_in_6908-wrapper .card-footer h4,
#stacks_in_6908-wrapper .card-footer h5,
#stacks_in_6908-wrapper .card-footer h6,
#stacks_in_6908-wrapper .card-footer p:last-of-type,
#stacks_in_6908-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6908-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6908-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6908-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6908-wrapper.card,
#stacks_in_6908-wrapper.card.custom-shadow,
#stacks_in_6908-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6908-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6908-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_6908-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6908-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6908-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6908-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6908-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6908-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_6908-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_6914.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6914.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6914.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6914.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6914.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6914.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6914.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6914.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6914.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6914.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_6912-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}







#stacks_in_6912-wrapper {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	#stacks_in_6912-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_6912-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_6912-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_6912-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_6912-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_6912-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6916-wrapper {
	
	
	
}

#stacks_in_6916-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6916-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6916-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6916-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6916-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6916-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6916-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6916-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6956-container {
	
	
	

	
	
	

}









#stacks_in_6964-wrapper {
	
}

#stacks_in_6964-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_6964-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_6964-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_6964-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_6964-wrapper.fdy-container {
	max-width: 960px;
  }
}











@media (max-width: 575px) {
	
	#stacks_in_6958-wrapper .col {
		
	}
	
}





#stacks_in_8760-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8760-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8760-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8760-margins.padding-advanced {
	padding: 3.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_8761-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8761-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8761-header {
	margin-bottom: 0;
}






.stacks_in_8761-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8761-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8761-header {
		font-size: 2.70rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8761-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8761-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8761-header {
		font-size: 3.00rem;
	}
}



#stacks_in_7982-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7982-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7982-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7982-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7982-margins.padding-advanced {
		padding: 0.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
	#stacks_in_7982-margins.padding-advanced {
		padding: 0.00rem 8.00rem 0.00rem 8.00rem;
	}
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6968-wrapper {
	
	
	
		
		
		color: var(--bs-danger);
		
	
}







#stacks_in_6968-wrapper {
	font-size: 1.10rem;
}

@media (min-width: 576px) {
	#stacks_in_6968-wrapper {
		font-size: 1.10rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_6968-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_6968-wrapper {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_6968-wrapper {
		font-size: 1.50rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_6968-wrapper {
		font-size: 1.50rem;
	}
}



	#stacks_in_6968-wrapper p:last-of-type {
		margin-bottom: 0;
	}




#stacks_out_6921 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6921 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6921 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6921 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6921 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6921 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6921 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested)";
	text-transform: capitalize;
}





#stacks_in_6922-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			
		
			
		
			 
			border-color: var(--bs-primary) !important;
			

			/* Rounded Corners */
			

}





 

#stacks_in_6924-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6924-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6924-wrapper.custom-radius,
#stacks_in_6924-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6924-wrapper .card-body {
	
	
}

#stacks_in_6924-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_6924-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6924-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6924-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6924-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6924-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6924-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6924-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6924-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6924-wrapper .card-header h1,
#stacks_in_6924-wrapper .card-header h2,
#stacks_in_6924-wrapper .card-header h3,
#stacks_in_6924-wrapper .card-header h4,
#stacks_in_6924-wrapper .card-header h5,
#stacks_in_6924-wrapper .card-header h6,
#stacks_in_6924-wrapper .card-header p:last-of-type,
#stacks_in_6924-wrapper .card-header small,
#stacks_in_6924-wrapper .card-footer h1,
#stacks_in_6924-wrapper .card-footer h2,
#stacks_in_6924-wrapper .card-footer h3,
#stacks_in_6924-wrapper .card-footer h4,
#stacks_in_6924-wrapper .card-footer h5,
#stacks_in_6924-wrapper .card-footer h6,
#stacks_in_6924-wrapper .card-footer p:last-of-type,
#stacks_in_6924-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6924-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6924-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6924-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6924-wrapper.card,
#stacks_in_6924-wrapper.card.custom-shadow,
#stacks_in_6924-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6924-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6924-wrapper .card-footer {
	
}

 

#stacks_in_6924-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6944-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6944-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6944-header {
	margin-bottom: 0;
}






.stacks_in_6944-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_6944-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6944-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6944-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6944-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6944-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_6946.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6946.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6946.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6946.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6946.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6946.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6946.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6946.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6946.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6946.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_6926-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(66, 165, 248, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6926-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6926-header {
	margin-bottom: 0;
}






.stacks_in_6926-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_6926-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6926-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6926-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6926-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6926-header {
		font-size: 2.00rem;
	}
}
#stacks_out_6929 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6929 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6929 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6929 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6929 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6929 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6929 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested-text)";
	text-transform: capitalize;
}





#stacks_in_6930-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6930-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6930-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6930-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6930-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6932-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_6932-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_6932-wrapper a,
#stacks_in_6932-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6932-wrapper a:hover,
#stacks_in_6932-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6932-wrapper p:last-of-type {
		margin-bottom: 0;
	}


 

#stacks_in_6936-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6936-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6936-wrapper.custom-radius,
#stacks_in_6936-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6936-wrapper .card-body {
	
	
}

#stacks_in_6936-wrapper .card-body {
	
	
	background: rgba(165, 216, 255, 1.00);
	
}



#stacks_in_6936-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6936-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6936-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6936-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6936-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6936-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6936-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6936-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6936-wrapper .card-header h1,
#stacks_in_6936-wrapper .card-header h2,
#stacks_in_6936-wrapper .card-header h3,
#stacks_in_6936-wrapper .card-header h4,
#stacks_in_6936-wrapper .card-header h5,
#stacks_in_6936-wrapper .card-header h6,
#stacks_in_6936-wrapper .card-header p:last-of-type,
#stacks_in_6936-wrapper .card-header small,
#stacks_in_6936-wrapper .card-footer h1,
#stacks_in_6936-wrapper .card-footer h2,
#stacks_in_6936-wrapper .card-footer h3,
#stacks_in_6936-wrapper .card-footer h4,
#stacks_in_6936-wrapper .card-footer h5,
#stacks_in_6936-wrapper .card-footer h6,
#stacks_in_6936-wrapper .card-footer p:last-of-type,
#stacks_in_6936-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6936-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6936-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6936-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6936-wrapper.card,
#stacks_in_6936-wrapper.card.custom-shadow,
#stacks_in_6936-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6936-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6936-wrapper .card-footer {
	
}

 

#stacks_in_6936-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_6948-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6948-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6948-header {
	margin-bottom: 0;
}






.stacks_in_6948-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_6948-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6948-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6948-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6948-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6948-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_6950.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_6950.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_6950.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_6950.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_6950.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_6950.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_6950.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_6950.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_6950.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_6950.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_6938 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6938 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6938 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6938 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6938 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6938 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6938 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested2)";
	text-transform: capitalize;
}





#stacks_in_6940-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6940-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6940-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6940-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6940-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6942-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_6942-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_6942-wrapper a,
#stacks_in_6942-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6942-wrapper a:hover,
#stacks_in_6942-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}






#stacks_in_6942-wrapper {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_6942-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_6942-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_6942-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_6942-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_6942-wrapper {
		font-size: 1.00rem;
	}
}



	#stacks_in_6942-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_6952-wrapper {
	
	
	
}

#stacks_in_6952-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6952-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6952-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6952-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6952-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6952-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6952-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6952-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_6954-wrapper {
	
	
	
}

#stacks_in_6954-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_6954-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_6954-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_6954-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_6954-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_6954-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_6954-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_6954-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_out_6979 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6979 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6979 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6979 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6979 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6979 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6979 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested)";
	text-transform: capitalize;
}





#stacks_in_6981-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(75, 126, 37, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_6983-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6983-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6983-wrapper.custom-radius,
#stacks_in_6983-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6983-wrapper .card-body {
	
	
}

#stacks_in_6983-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_6983-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6983-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6983-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6983-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6983-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6983-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6983-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6983-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6983-wrapper .card-header h1,
#stacks_in_6983-wrapper .card-header h2,
#stacks_in_6983-wrapper .card-header h3,
#stacks_in_6983-wrapper .card-header h4,
#stacks_in_6983-wrapper .card-header h5,
#stacks_in_6983-wrapper .card-header h6,
#stacks_in_6983-wrapper .card-header p:last-of-type,
#stacks_in_6983-wrapper .card-header small,
#stacks_in_6983-wrapper .card-footer h1,
#stacks_in_6983-wrapper .card-footer h2,
#stacks_in_6983-wrapper .card-footer h3,
#stacks_in_6983-wrapper .card-footer h4,
#stacks_in_6983-wrapper .card-footer h5,
#stacks_in_6983-wrapper .card-footer h6,
#stacks_in_6983-wrapper .card-footer p:last-of-type,
#stacks_in_6983-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6983-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6983-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6983-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6983-wrapper.card,
#stacks_in_6983-wrapper.card.custom-shadow,
#stacks_in_6983-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6983-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6983-wrapper .card-footer {
	
}

 

#stacks_in_6983-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7002-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7002-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7002-header {
	margin-bottom: 0;
}






.stacks_in_7002-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_7002-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7002-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7002-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7002-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7002-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_7004.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7004.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7004.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7004.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7004.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7004.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7004.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7004.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7004.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7004.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_6985-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(121, 198, 59, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_6985-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_6985-header {
	margin-bottom: 0;
}






.stacks_in_6985-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_6985-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_6985-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_6985-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_6985-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_6985-header {
		font-size: 2.00rem;
	}
}
#stacks_out_6988 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6988 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6988 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6988 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6988 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6988 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6988 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested-text)";
	text-transform: capitalize;
}





#stacks_in_6989-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6989-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6989-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6989-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6989-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6991-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_6991-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_6991-wrapper a,
#stacks_in_6991-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6991-wrapper a:hover,
#stacks_in_6991-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6991-wrapper p:last-of-type {
		margin-bottom: 0;
	}


 

#stacks_in_6994-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_6994-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_6994-wrapper.custom-radius,
#stacks_in_6994-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_6994-wrapper .card-body {
	
	
}

#stacks_in_6994-wrapper .card-body {
	
	
	background: rgba(121, 198, 59, 0.15);
	
}



#stacks_in_6994-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_6994-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_6994-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_6994-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_6994-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_6994-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_6994-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_6994-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_6994-wrapper .card-header h1,
#stacks_in_6994-wrapper .card-header h2,
#stacks_in_6994-wrapper .card-header h3,
#stacks_in_6994-wrapper .card-header h4,
#stacks_in_6994-wrapper .card-header h5,
#stacks_in_6994-wrapper .card-header h6,
#stacks_in_6994-wrapper .card-header p:last-of-type,
#stacks_in_6994-wrapper .card-header small,
#stacks_in_6994-wrapper .card-footer h1,
#stacks_in_6994-wrapper .card-footer h2,
#stacks_in_6994-wrapper .card-footer h3,
#stacks_in_6994-wrapper .card-footer h4,
#stacks_in_6994-wrapper .card-footer h5,
#stacks_in_6994-wrapper .card-footer h6,
#stacks_in_6994-wrapper .card-footer p:last-of-type,
#stacks_in_6994-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_6994-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_6994-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_6994-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_6994-wrapper.card,
#stacks_in_6994-wrapper.card.custom-shadow,
#stacks_in_6994-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_6994-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_6994-wrapper .card-footer {
	
}

 

#stacks_in_6994-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7006-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7006-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7006-header {
	margin-bottom: 0;
}






.stacks_in_7006-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_7006-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7006-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7006-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7006-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7006-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_7008.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7008.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7008.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7008.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7008.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7008.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7008.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7008.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7008.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7008.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_6995 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_6995 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_6995 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_6995 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_6995 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_6995 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_6995 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested2)";
	text-transform: capitalize;
}





#stacks_in_6997-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_6997-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_6997-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_6997-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_6997-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_6999-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_6999-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_6999-wrapper a,
#stacks_in_6999-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_6999-wrapper a:hover,
#stacks_in_6999-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_6999-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7010-wrapper {
	
	
	
}

#stacks_in_7010-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7010-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7010-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7010-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7010-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7010-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7010-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7010-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_7012-wrapper {
	
	
	
}

#stacks_in_7012-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7012-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7012-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7012-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7012-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7012-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7012-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7012-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_7023-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7023-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_7023-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7023-margins.padding-advanced {
	padding: 0.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7023-margins.padding-advanced {
		padding: 1.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
	#stacks_in_7023-margins.padding-advanced {
		padding: 1.00rem 2.00rem 2.00rem 2.00rem;
	}
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_7024-wrapper,
#stacks_in_7024-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_7024-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_7024-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_7024-wrapper {
	background-position: center center;
}


#stacks_in_7024-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_7024-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_7024-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_7024-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_7024-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_7024-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_7024-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_7024-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_7024-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_7024-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_7024-wrapper.bkg-preset {
	background: var(--bs-info);
}

#stacks_in_7024-wrapper.bkg-solid-color {
	background: rgba(237, 246, 255, 1.00);
}

#stacks_in_7024-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_7024-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(251, 69, 36, 0.86), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(251, 69, 36, 0.30), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(251, 69, 36, 0.49), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(251, 69, 36, 0.76), transparent 80%);
}

#stacks_in_7024-wrapper.custom-corners,
#stacks_in_7024-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_7024-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_7024-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_7024-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_7024-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_7024-wrapper {
	
	
	border-color: var(--bs-primary) !important;
	
	
	
}








	

	








#stacks_in_7026-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7026-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7026-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7026-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_7041-wrapper .col {
		
	}
	
}








#stacks_in_7030-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7030-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_7030-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7030-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_7032-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7032-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7032-header {
	margin-bottom: 0;
}






.stacks_in_7032-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_7032-header {
		font-size: 1.55rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7032-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7032-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7032-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7032-header {
		font-size: 2.00rem;
	}
}



#stacks_in_7140-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7140-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_7140-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7140-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.50rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_7141-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.20rem;
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_7141-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_7141-header {
	margin-bottom: 0;
}







 

#stacks_in_7147-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7147-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7147-wrapper.custom-radius,
#stacks_in_7147-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7147-wrapper .card-body {
	
	
}

#stacks_in_7147-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_7147-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7147-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7147-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7147-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7147-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7147-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7147-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7147-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7147-wrapper .card-header h1,
#stacks_in_7147-wrapper .card-header h2,
#stacks_in_7147-wrapper .card-header h3,
#stacks_in_7147-wrapper .card-header h4,
#stacks_in_7147-wrapper .card-header h5,
#stacks_in_7147-wrapper .card-header h6,
#stacks_in_7147-wrapper .card-header p:last-of-type,
#stacks_in_7147-wrapper .card-header small,
#stacks_in_7147-wrapper .card-footer h1,
#stacks_in_7147-wrapper .card-footer h2,
#stacks_in_7147-wrapper .card-footer h3,
#stacks_in_7147-wrapper .card-footer h4,
#stacks_in_7147-wrapper .card-footer h5,
#stacks_in_7147-wrapper .card-footer h6,
#stacks_in_7147-wrapper .card-footer p:last-of-type,
#stacks_in_7147-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7147-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7147-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7147-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7147-wrapper.card,
#stacks_in_7147-wrapper.card.custom-shadow,
#stacks_in_7147-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7147-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7147-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_7147-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7147-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7147-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7147-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7147-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7147-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_7147-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_7153.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7153.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7153.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7153.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7153.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7153.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7153.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7153.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7153.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7153.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_7037-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7037-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_7037-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7037-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.50rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_7038-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.35rem;
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_7038-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_7038-header {
	margin-bottom: 0;
}








#stacks_in_7035-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}




/* Base Margins */
#stacks_in_7035-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7035-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7035-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7035-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7035-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7035-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




#stacks_in_7035-wrapper {
	font-size: 1.10rem;
}

@media (min-width: 576px) {
	#stacks_in_7035-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_7035-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_7035-wrapper {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_7035-wrapper {
		font-size: 1.50rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_7035-wrapper {
		font-size: 1.60rem;
	}
}



	#stacks_in_7035-wrapper p:last-of-type {
		margin-bottom: 0;
	}








@media (max-width: 575px) {
	
	#stacks_in_7277-wrapper .col {
		
	}
	
}


 

#stacks_in_7225-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7225-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7225-wrapper.custom-radius,
#stacks_in_7225-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7225-wrapper .card-body {
	
	
}

#stacks_in_7225-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_7225-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7225-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7225-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7225-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7225-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7225-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7225-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7225-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7225-wrapper .card-header h1,
#stacks_in_7225-wrapper .card-header h2,
#stacks_in_7225-wrapper .card-header h3,
#stacks_in_7225-wrapper .card-header h4,
#stacks_in_7225-wrapper .card-header h5,
#stacks_in_7225-wrapper .card-header h6,
#stacks_in_7225-wrapper .card-header p:last-of-type,
#stacks_in_7225-wrapper .card-header small,
#stacks_in_7225-wrapper .card-footer h1,
#stacks_in_7225-wrapper .card-footer h2,
#stacks_in_7225-wrapper .card-footer h3,
#stacks_in_7225-wrapper .card-footer h4,
#stacks_in_7225-wrapper .card-footer h5,
#stacks_in_7225-wrapper .card-footer h6,
#stacks_in_7225-wrapper .card-footer p:last-of-type,
#stacks_in_7225-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7225-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7225-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7225-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7225-wrapper.card,
#stacks_in_7225-wrapper.card.custom-shadow,
#stacks_in_7225-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7225-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7225-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_7225-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7225-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7225-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7225-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7225-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7225-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_7225-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_7231.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7231.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7231.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7231.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7231.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7231.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7231.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7231.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7231.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7231.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_7261-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7261-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7261-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7261-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_8767.blu-svg{text-align:center}#stacks_in_8767.blu-svg svg{width:30.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_8767.blu-svg{text-align:center}#stacks_in_8767.blu-svg svg{width:30.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_8767.blu-svg{text-align:center}#stacks_in_8767.blu-svg svg{width:50.00px}}@media screen and (min-width:1000px){#stacks_in_8767.blu-svg{text-align:center}#stacks_in_8767.blu-svg svg{width:50.00px}}  #stacks_in_8767.blu-svg svg rectange,#stacks_in_8767.blu-svg svg circle,#stacks_in_8767.blu-svg svg ellipse,#stacks_in_8767.blu-svg svg polygon,#stacks_in_8767.blu-svg svg polyline,#stacks_in_8767.blu-svg svg path{fill:rgba(13, 75, 161, 1.00)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_8767.blu-svg svg:hover rectange,#stacks_in_8767.blu-svg svg:hover circle,#stacks_in_8767.blu-svg svg:hover ellipse,#stacks_in_8767.blu-svg svg:hover polygon,#stacks_in_8767.blu-svg svg:hover polyline,#stacks_in_8767.blu-svg svg:hover path{fill:rgba(251, 0, 7, 0.50)!important} #stacks_in_8767.blu-svg{float:none}#stacks_in_8767 a,#stacks_in_8767 svg{cursor:auto}
#stacks_out_7227 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7227 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7227 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7227 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7227 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7227 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7227 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (critical-cleaning-fact)";
	text-transform: capitalize;
}





#stacks_in_7229-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_7229-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7233-wrapper {
	
	
	
}

#stacks_in_7233-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7233-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7233-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7233-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7233-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7233-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7233-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7233-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


 

#stacks_in_7235-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7235-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7235-wrapper.custom-radius,
#stacks_in_7235-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7235-wrapper .card-body {
	
	
}

#stacks_in_7235-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_7235-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7235-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7235-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7235-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7235-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7235-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7235-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7235-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7235-wrapper .card-header h1,
#stacks_in_7235-wrapper .card-header h2,
#stacks_in_7235-wrapper .card-header h3,
#stacks_in_7235-wrapper .card-header h4,
#stacks_in_7235-wrapper .card-header h5,
#stacks_in_7235-wrapper .card-header h6,
#stacks_in_7235-wrapper .card-header p:last-of-type,
#stacks_in_7235-wrapper .card-header small,
#stacks_in_7235-wrapper .card-footer h1,
#stacks_in_7235-wrapper .card-footer h2,
#stacks_in_7235-wrapper .card-footer h3,
#stacks_in_7235-wrapper .card-footer h4,
#stacks_in_7235-wrapper .card-footer h5,
#stacks_in_7235-wrapper .card-footer h6,
#stacks_in_7235-wrapper .card-footer p:last-of-type,
#stacks_in_7235-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7235-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7235-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7235-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7235-wrapper.card,
#stacks_in_7235-wrapper.card.custom-shadow,
#stacks_in_7235-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7235-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7235-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_7235-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7235-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7235-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7235-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7235-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7235-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_7235-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_7241.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7241.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7241.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7241.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7241.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7241.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7241.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7241.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7241.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7241.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_7265-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7265-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7265-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7265-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_8775.blu-svg{text-align:center}#stacks_in_8775.blu-svg svg{width:30.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_8775.blu-svg{text-align:center}#stacks_in_8775.blu-svg svg{width:30.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_8775.blu-svg{text-align:center}#stacks_in_8775.blu-svg svg{width:50.00px}}@media screen and (min-width:1000px){#stacks_in_8775.blu-svg{text-align:center}#stacks_in_8775.blu-svg svg{width:50.00px}}  #stacks_in_8775.blu-svg svg rectange,#stacks_in_8775.blu-svg svg circle,#stacks_in_8775.blu-svg svg ellipse,#stacks_in_8775.blu-svg svg polygon,#stacks_in_8775.blu-svg svg polyline,#stacks_in_8775.blu-svg svg path{fill:rgba(13, 75, 161, 1.00)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_8775.blu-svg svg:hover rectange,#stacks_in_8775.blu-svg svg:hover circle,#stacks_in_8775.blu-svg svg:hover ellipse,#stacks_in_8775.blu-svg svg:hover polygon,#stacks_in_8775.blu-svg svg:hover polyline,#stacks_in_8775.blu-svg svg:hover path{fill:rgba(251, 0, 7, 0.50)!important} #stacks_in_8775.blu-svg{float:none}#stacks_in_8775 a,#stacks_in_8775 svg{cursor:auto}
#stacks_out_7237 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7237 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7237 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7237 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7237 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7237 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7237 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (critical-cleaning-fact)";
	text-transform: capitalize;
}





#stacks_in_7239-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_7239-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7243-wrapper {
	
	
	
}

#stacks_in_7243-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7243-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7243-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7243-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7243-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7243-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7243-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7243-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


 

#stacks_in_7245-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7245-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7245-wrapper.custom-radius,
#stacks_in_7245-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7245-wrapper .card-body {
	
	
}

#stacks_in_7245-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_7245-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7245-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7245-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7245-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7245-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7245-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7245-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7245-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7245-wrapper .card-header h1,
#stacks_in_7245-wrapper .card-header h2,
#stacks_in_7245-wrapper .card-header h3,
#stacks_in_7245-wrapper .card-header h4,
#stacks_in_7245-wrapper .card-header h5,
#stacks_in_7245-wrapper .card-header h6,
#stacks_in_7245-wrapper .card-header p:last-of-type,
#stacks_in_7245-wrapper .card-header small,
#stacks_in_7245-wrapper .card-footer h1,
#stacks_in_7245-wrapper .card-footer h2,
#stacks_in_7245-wrapper .card-footer h3,
#stacks_in_7245-wrapper .card-footer h4,
#stacks_in_7245-wrapper .card-footer h5,
#stacks_in_7245-wrapper .card-footer h6,
#stacks_in_7245-wrapper .card-footer p:last-of-type,
#stacks_in_7245-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7245-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7245-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7245-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7245-wrapper.card,
#stacks_in_7245-wrapper.card.custom-shadow,
#stacks_in_7245-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7245-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7245-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_7245-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7245-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7245-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7245-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7245-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7245-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_7245-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_7251.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7251.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7251.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7251.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7251.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7251.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7251.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7251.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7251.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7251.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_7269-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7269-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7269-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7269-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_8777.blu-svg{text-align:center}#stacks_in_8777.blu-svg svg{width:25.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_8777.blu-svg{text-align:center}#stacks_in_8777.blu-svg svg{width:25.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_8777.blu-svg{text-align:center}#stacks_in_8777.blu-svg svg{width:40.00px}}@media screen and (min-width:1000px){#stacks_in_8777.blu-svg{text-align:center}#stacks_in_8777.blu-svg svg{width:40.00px}}  #stacks_in_8777.blu-svg svg rectange,#stacks_in_8777.blu-svg svg circle,#stacks_in_8777.blu-svg svg ellipse,#stacks_in_8777.blu-svg svg polygon,#stacks_in_8777.blu-svg svg polyline,#stacks_in_8777.blu-svg svg path{fill:rgba(13, 75, 161, 1.00)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_8777.blu-svg svg:hover rectange,#stacks_in_8777.blu-svg svg:hover circle,#stacks_in_8777.blu-svg svg:hover ellipse,#stacks_in_8777.blu-svg svg:hover polygon,#stacks_in_8777.blu-svg svg:hover polyline,#stacks_in_8777.blu-svg svg:hover path{fill:rgba(251, 0, 7, 0.50)!important} #stacks_in_8777.blu-svg{float:none}#stacks_in_8777 a,#stacks_in_8777 svg{cursor:auto}
#stacks_out_7246 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7246 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7246 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7246 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7246 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7246 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7246 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (critical-cleaning-fact)";
	text-transform: capitalize;
}





#stacks_in_7248-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_7248-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7253-wrapper {
	
	
	
}

#stacks_in_7253-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7253-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7253-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7253-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7253-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7253-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7253-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7253-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


 

#stacks_in_7044-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7044-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7044-wrapper.custom-radius,
#stacks_in_7044-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7044-wrapper .card-body {
	
	
}

#stacks_in_7044-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_7044-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7044-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7044-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7044-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7044-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7044-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7044-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7044-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7044-wrapper .card-header h1,
#stacks_in_7044-wrapper .card-header h2,
#stacks_in_7044-wrapper .card-header h3,
#stacks_in_7044-wrapper .card-header h4,
#stacks_in_7044-wrapper .card-header h5,
#stacks_in_7044-wrapper .card-header h6,
#stacks_in_7044-wrapper .card-header p:last-of-type,
#stacks_in_7044-wrapper .card-header small,
#stacks_in_7044-wrapper .card-footer h1,
#stacks_in_7044-wrapper .card-footer h2,
#stacks_in_7044-wrapper .card-footer h3,
#stacks_in_7044-wrapper .card-footer h4,
#stacks_in_7044-wrapper .card-footer h5,
#stacks_in_7044-wrapper .card-footer h6,
#stacks_in_7044-wrapper .card-footer p:last-of-type,
#stacks_in_7044-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7044-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7044-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7044-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7044-wrapper.card,
#stacks_in_7044-wrapper.card.custom-shadow,
#stacks_in_7044-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7044-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7044-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_7044-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7044-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7044-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7044-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7044-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7044-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_7044-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_7109.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7109.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7109.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7109.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7109.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7109.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7109.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7109.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7109.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7109.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_7273-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7273-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7273-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7273-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_8779.blu-svg{text-align:center}#stacks_in_8779.blu-svg svg{width:30.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_8779.blu-svg{text-align:center}#stacks_in_8779.blu-svg svg{width:30.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_8779.blu-svg{text-align:center}#stacks_in_8779.blu-svg svg{width:50.00px}}@media screen and (min-width:1000px){#stacks_in_8779.blu-svg{text-align:center}#stacks_in_8779.blu-svg svg{width:50.00px}}  #stacks_in_8779.blu-svg svg rectange,#stacks_in_8779.blu-svg svg circle,#stacks_in_8779.blu-svg svg ellipse,#stacks_in_8779.blu-svg svg polygon,#stacks_in_8779.blu-svg svg polyline,#stacks_in_8779.blu-svg svg path{fill:rgba(13, 75, 161, 1.00)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_8779.blu-svg svg:hover rectange,#stacks_in_8779.blu-svg svg:hover circle,#stacks_in_8779.blu-svg svg:hover ellipse,#stacks_in_8779.blu-svg svg:hover polygon,#stacks_in_8779.blu-svg svg:hover polyline,#stacks_in_8779.blu-svg svg:hover path{fill:rgba(251, 0, 7, 0.50)!important} #stacks_in_8779.blu-svg{float:none}#stacks_in_8779 a,#stacks_in_8779 svg{cursor:auto}
#stacks_out_7046 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7046 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7046 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7046 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7046 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7046 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7046 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (critical-cleaning-fact)";
	text-transform: capitalize;
}





#stacks_in_7048-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_7048-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7111-wrapper {
	
	
	
}

#stacks_in_7111-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7111-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7111-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7111-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7111-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7111-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7111-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7111-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_7155-wrapper {
	
	
	
}

#stacks_in_7155-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7155-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7155-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7155-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7155-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7155-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7155-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7155-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






@media (max-width: 575px) {
	
	#stacks_in_7075-wrapper .col {
		
	}
	
}





#stacks_in_7298-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7298-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7298-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7298-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_7288-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7288-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_7288-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_7288-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_7288-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_7288-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_7288-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_7288-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_7288-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_7288-header {
		font-size: 1.40rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7288-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7288-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7288-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7288-header {
		font-size: 2.00rem;
	}
}


 

#stacks_in_7325-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7325-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7325-wrapper.custom-radius,
#stacks_in_7325-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7325-wrapper .card-body {
	
	
}

#stacks_in_7325-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.00);
	
}



#stacks_in_7325-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7325-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7325-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7325-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7325-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7325-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7325-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7325-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7325-wrapper .card-header h1,
#stacks_in_7325-wrapper .card-header h2,
#stacks_in_7325-wrapper .card-header h3,
#stacks_in_7325-wrapper .card-header h4,
#stacks_in_7325-wrapper .card-header h5,
#stacks_in_7325-wrapper .card-header h6,
#stacks_in_7325-wrapper .card-header p:last-of-type,
#stacks_in_7325-wrapper .card-header small,
#stacks_in_7325-wrapper .card-footer h1,
#stacks_in_7325-wrapper .card-footer h2,
#stacks_in_7325-wrapper .card-footer h3,
#stacks_in_7325-wrapper .card-footer h4,
#stacks_in_7325-wrapper .card-footer h5,
#stacks_in_7325-wrapper .card-footer h6,
#stacks_in_7325-wrapper .card-footer p:last-of-type,
#stacks_in_7325-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7325-wrapper.card {
	
	border-color: var(--bs-white) !important;
	
	
}

#stacks_in_7325-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7325-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7325-wrapper.card,
#stacks_in_7325-wrapper.card.custom-shadow,
#stacks_in_7325-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7325-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7325-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_7325-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7325-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7325-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7325-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7325-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7325-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_7325-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7335-header {
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7335-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7335-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_7337.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7337.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7337.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7337.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7337.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7337.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7337.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7337.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7337.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7337.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_7326-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7326-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_7326-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_7326-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_7326-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_7326-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_7326-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_7326-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_7326-header {
	font-size: 1.35rem;
}

@media (min-width: 576px) {
	.stacks_in_7326-header {
		font-size: 1.35rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7326-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7326-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7326-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7326-header {
		font-size: 2.00rem;
	}
}
#stacks_out_7427 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7427 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7427 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7427 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7427 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7427 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7427 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (why-this-changes)";
	text-transform: capitalize;
}




.stacks_in_7329-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_7329-list {
	
	color: var(--bs-white) !important;
	
	
	
}

.stacks_in_7329-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_7329-list a,
.stacks_in_7329-list a:visited,
.stacks_in_7329-list a:hover,
.stacks_in_7329-list a:active {
	text-decoration: none;
}

.stacks_in_7329-list a,
.stacks_in_7329-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_7329-list a:hover,
.stacks_in_7329-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_7329-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7329-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7329-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7329-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7329-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7329-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_7329-list .list-inline-item:not(:last-child) {

}

.stacks_in_7329-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_7329-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_7330-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_7330-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_7332-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_7332-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_7333-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_7333-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_7334-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_7334-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_7339-wrapper {
	
	
	
}

#stacks_in_7339-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7339-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7339-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7339-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7339-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7339-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7339-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7339-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


 

#stacks_in_7312-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7312-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7312-wrapper.custom-radius,
#stacks_in_7312-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7312-wrapper .card-body {
	
	
}

#stacks_in_7312-wrapper .card-body {
	
	
	background: rgba(13, 75, 161, 1.00);
	
}



#stacks_in_7312-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7312-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7312-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7312-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7312-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7312-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7312-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7312-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7312-wrapper .card-header h1,
#stacks_in_7312-wrapper .card-header h2,
#stacks_in_7312-wrapper .card-header h3,
#stacks_in_7312-wrapper .card-header h4,
#stacks_in_7312-wrapper .card-header h5,
#stacks_in_7312-wrapper .card-header h6,
#stacks_in_7312-wrapper .card-header p:last-of-type,
#stacks_in_7312-wrapper .card-header small,
#stacks_in_7312-wrapper .card-footer h1,
#stacks_in_7312-wrapper .card-footer h2,
#stacks_in_7312-wrapper .card-footer h3,
#stacks_in_7312-wrapper .card-footer h4,
#stacks_in_7312-wrapper .card-footer h5,
#stacks_in_7312-wrapper .card-footer h6,
#stacks_in_7312-wrapper .card-footer p:last-of-type,
#stacks_in_7312-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7312-wrapper.card {
	
	border-color: var(--bs-white) !important;
	
	
}

#stacks_in_7312-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7312-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7312-wrapper.card,
#stacks_in_7312-wrapper.card.custom-shadow,
#stacks_in_7312-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7312-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7312-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_7312-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7312-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7312-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7312-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7312-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7312-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_7312-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7316-header {
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7316-header > small {
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7316-header {
	margin-bottom: 0;
}









/* Base Margins */
.stacks_in_7319.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7319.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7319.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7319.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7319.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7319.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7319.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7319.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7319.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7319.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_7078-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(121, 198, 59, 1.00);
	
	
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7078-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_7078-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_7078-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_7078-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_7078-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_7078-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_7078-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_7078-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_7078-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7078-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7078-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7078-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7078-header {
		font-size: 2.00rem;
	}
}
#stacks_out_7393 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7393 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7393 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7393 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7393 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7393 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7393 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (why-this-changes)";
	text-transform: capitalize;
}




.stacks_in_7081-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_7081-list {
	
	color: var(--bs-white) !important;
	
	
	
}

.stacks_in_7081-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_7081-list a,
.stacks_in_7081-list a:visited,
.stacks_in_7081-list a:hover,
.stacks_in_7081-list a:active {
	text-decoration: none;
}

.stacks_in_7081-list a,
.stacks_in_7081-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_7081-list a:hover,
.stacks_in_7081-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_7081-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7081-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7081-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7081-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7081-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7081-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_7081-list .list-inline-item:not(:last-child) {

}

.stacks_in_7081-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_7081-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_7082-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_7082-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_7084-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_7084-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_7085-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_7085-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_7086-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_7086-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_7321-wrapper {
	
	
	
}

#stacks_in_7321-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7321-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7321-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7321-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7321-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7321-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7321-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7321-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


 

#stacks_in_7100-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7100-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7100-wrapper.custom-radius,
#stacks_in_7100-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7100-wrapper .card-body {
	
	
}

#stacks_in_7100-wrapper .card-body {
	
	
	background: rgba(255, 255, 255, 0.20);
	
}



#stacks_in_7100-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7100-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7100-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7100-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7100-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7100-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7100-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7100-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7100-wrapper .card-header h1,
#stacks_in_7100-wrapper .card-header h2,
#stacks_in_7100-wrapper .card-header h3,
#stacks_in_7100-wrapper .card-header h4,
#stacks_in_7100-wrapper .card-header h5,
#stacks_in_7100-wrapper .card-header h6,
#stacks_in_7100-wrapper .card-header p:last-of-type,
#stacks_in_7100-wrapper .card-header small,
#stacks_in_7100-wrapper .card-footer h1,
#stacks_in_7100-wrapper .card-footer h2,
#stacks_in_7100-wrapper .card-footer h3,
#stacks_in_7100-wrapper .card-footer h4,
#stacks_in_7100-wrapper .card-footer h5,
#stacks_in_7100-wrapper .card-footer h6,
#stacks_in_7100-wrapper .card-footer p:last-of-type,
#stacks_in_7100-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7100-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7100-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7100-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7100-wrapper.card,
#stacks_in_7100-wrapper.card.custom-shadow,
#stacks_in_7100-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7100-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7100-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_7100-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7100-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7100-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7100-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7100-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7100-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_7100-wrapper img {
 	margin: 0 !important;
 }
 



/* Base Margins */
.stacks_in_7135.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7135.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7135.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7135.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7135.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7135.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7135.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7135.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7135.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7135.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_7345-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7345-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_7345-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_7345-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_7345-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_7345-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_7345-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_7345-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_7345-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_7345-header {
		font-size: 1.40rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7345-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7345-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7345-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7345-header {
		font-size: 2.00rem;
	}
}



#stacks_in_8014-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8014-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8014-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8014-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8017-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}







#stacks_in_8017-wrapper {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	#stacks_in_8017-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_8017-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_8017-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8017-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8017-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_8017-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8015-wrapper {
	
	
	
		
		
		color: var(--bs-success);
		
	
}







#stacks_in_8015-wrapper {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	#stacks_in_8015-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_8015-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_8015-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8015-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8015-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_8015-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7137-wrapper {
	
	
	
}

#stacks_in_7137-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7137-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7137-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7137-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7137-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7137-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7137-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7137-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_out_7430 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7430 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7430 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7430 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7430 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7430 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7430 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested)";
	text-transform: capitalize;
}





#stacks_in_7432-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(251, 0, 7, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_7434-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7434-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7434-wrapper.custom-radius,
#stacks_in_7434-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7434-wrapper .card-body {
	
	
}

#stacks_in_7434-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_7434-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7434-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7434-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7434-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7434-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7434-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7434-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7434-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7434-wrapper .card-header h1,
#stacks_in_7434-wrapper .card-header h2,
#stacks_in_7434-wrapper .card-header h3,
#stacks_in_7434-wrapper .card-header h4,
#stacks_in_7434-wrapper .card-header h5,
#stacks_in_7434-wrapper .card-header h6,
#stacks_in_7434-wrapper .card-header p:last-of-type,
#stacks_in_7434-wrapper .card-header small,
#stacks_in_7434-wrapper .card-footer h1,
#stacks_in_7434-wrapper .card-footer h2,
#stacks_in_7434-wrapper .card-footer h3,
#stacks_in_7434-wrapper .card-footer h4,
#stacks_in_7434-wrapper .card-footer h5,
#stacks_in_7434-wrapper .card-footer h6,
#stacks_in_7434-wrapper .card-footer p:last-of-type,
#stacks_in_7434-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7434-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7434-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7434-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7434-wrapper.card,
#stacks_in_7434-wrapper.card.custom-shadow,
#stacks_in_7434-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7434-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7434-wrapper .card-footer {
	
}

 

#stacks_in_7434-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7453-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7453-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7453-header {
	margin-bottom: 0;
}






.stacks_in_7453-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_7453-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7453-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7453-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7453-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7453-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_7455.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7455.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7455.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7455.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7455.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7455.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7455.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7455.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7455.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7455.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_7436-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(251, 0, 7, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7436-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7436-header {
	margin-bottom: 0;
}






.stacks_in_7436-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_7436-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7436-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7436-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7436-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7436-header {
		font-size: 2.00rem;
	}
}
#stacks_out_7439 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7439 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7439 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7439 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7439 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7439 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7439 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested-text)";
	text-transform: capitalize;
}





#stacks_in_7440-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7440-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7440-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7440-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7440-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_7442-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_7442-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_7442-wrapper a,
#stacks_in_7442-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_7442-wrapper a:hover,
#stacks_in_7442-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_7442-wrapper p:last-of-type {
		margin-bottom: 0;
	}


 

#stacks_in_7445-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7445-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7445-wrapper.custom-radius,
#stacks_in_7445-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7445-wrapper .card-body {
	
	
}

#stacks_in_7445-wrapper .card-body {
	
	
	background: rgba(251, 0, 7, 0.15);
	
}



#stacks_in_7445-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7445-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7445-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7445-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7445-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7445-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7445-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7445-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7445-wrapper .card-header h1,
#stacks_in_7445-wrapper .card-header h2,
#stacks_in_7445-wrapper .card-header h3,
#stacks_in_7445-wrapper .card-header h4,
#stacks_in_7445-wrapper .card-header h5,
#stacks_in_7445-wrapper .card-header h6,
#stacks_in_7445-wrapper .card-header p:last-of-type,
#stacks_in_7445-wrapper .card-header small,
#stacks_in_7445-wrapper .card-footer h1,
#stacks_in_7445-wrapper .card-footer h2,
#stacks_in_7445-wrapper .card-footer h3,
#stacks_in_7445-wrapper .card-footer h4,
#stacks_in_7445-wrapper .card-footer h5,
#stacks_in_7445-wrapper .card-footer h6,
#stacks_in_7445-wrapper .card-footer p:last-of-type,
#stacks_in_7445-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7445-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7445-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7445-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7445-wrapper.card,
#stacks_in_7445-wrapper.card.custom-shadow,
#stacks_in_7445-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7445-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7445-wrapper .card-footer {
	
}

 

#stacks_in_7445-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7457-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7457-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7457-header {
	margin-bottom: 0;
}






.stacks_in_7457-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_7457-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7457-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7457-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7457-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7457-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_7459.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7459.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7459.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7459.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7459.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7459.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7459.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7459.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7459.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7459.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_7446 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7446 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7446 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7446 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7446 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7446 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7446 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested2)";
	text-transform: capitalize;
}





#stacks_in_7448-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7448-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7448-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7448-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7448-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_7450-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_7450-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_7450-wrapper a,
#stacks_in_7450-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_7450-wrapper a:hover,
#stacks_in_7450-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_7450-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7461-wrapper {
	
	
	
}

#stacks_in_7461-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7461-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7461-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7461-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7461-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7461-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7461-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7461-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_7463-wrapper {
	
	
	
}

#stacks_in_7463-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7463-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7463-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7463-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7463-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7463-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7463-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7463-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_out_7466 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7466 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7466 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7466 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7466 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7466 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7466 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested)";
	text-transform: capitalize;
}





#stacks_in_7468-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(255, 138, 0, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_7470-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7470-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7470-wrapper.custom-radius,
#stacks_in_7470-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7470-wrapper .card-body {
	
	
}

#stacks_in_7470-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_7470-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7470-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7470-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7470-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7470-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7470-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7470-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7470-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7470-wrapper .card-header h1,
#stacks_in_7470-wrapper .card-header h2,
#stacks_in_7470-wrapper .card-header h3,
#stacks_in_7470-wrapper .card-header h4,
#stacks_in_7470-wrapper .card-header h5,
#stacks_in_7470-wrapper .card-header h6,
#stacks_in_7470-wrapper .card-header p:last-of-type,
#stacks_in_7470-wrapper .card-header small,
#stacks_in_7470-wrapper .card-footer h1,
#stacks_in_7470-wrapper .card-footer h2,
#stacks_in_7470-wrapper .card-footer h3,
#stacks_in_7470-wrapper .card-footer h4,
#stacks_in_7470-wrapper .card-footer h5,
#stacks_in_7470-wrapper .card-footer h6,
#stacks_in_7470-wrapper .card-footer p:last-of-type,
#stacks_in_7470-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7470-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7470-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7470-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7470-wrapper.card,
#stacks_in_7470-wrapper.card.custom-shadow,
#stacks_in_7470-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7470-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7470-wrapper .card-footer {
	
}

 

#stacks_in_7470-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7489-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7489-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7489-header {
	margin-bottom: 0;
}






.stacks_in_7489-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_7489-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7489-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7489-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7489-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7489-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_7491.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7491.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7491.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7491.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7491.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7491.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7491.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7491.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7491.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7491.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_7472-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(255, 138, 0, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7472-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7472-header {
	margin-bottom: 0;
}






.stacks_in_7472-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_7472-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7472-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7472-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7472-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7472-header {
		font-size: 2.00rem;
	}
}
#stacks_out_7475 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7475 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7475 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7475 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7475 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7475 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7475 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested-text)";
	text-transform: capitalize;
}





#stacks_in_7476-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7476-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7476-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7476-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7476-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_7478-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_7478-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_7478-wrapper a,
#stacks_in_7478-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_7478-wrapper a:hover,
#stacks_in_7478-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_7478-wrapper p:last-of-type {
		margin-bottom: 0;
	}


 

#stacks_in_7481-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7481-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7481-wrapper.custom-radius,
#stacks_in_7481-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7481-wrapper .card-body {
	
	
}

#stacks_in_7481-wrapper .card-body {
	
	
	background: rgba(255, 138, 0, 0.15);
	
}



#stacks_in_7481-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7481-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7481-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7481-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7481-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7481-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7481-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7481-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7481-wrapper .card-header h1,
#stacks_in_7481-wrapper .card-header h2,
#stacks_in_7481-wrapper .card-header h3,
#stacks_in_7481-wrapper .card-header h4,
#stacks_in_7481-wrapper .card-header h5,
#stacks_in_7481-wrapper .card-header h6,
#stacks_in_7481-wrapper .card-header p:last-of-type,
#stacks_in_7481-wrapper .card-header small,
#stacks_in_7481-wrapper .card-footer h1,
#stacks_in_7481-wrapper .card-footer h2,
#stacks_in_7481-wrapper .card-footer h3,
#stacks_in_7481-wrapper .card-footer h4,
#stacks_in_7481-wrapper .card-footer h5,
#stacks_in_7481-wrapper .card-footer h6,
#stacks_in_7481-wrapper .card-footer p:last-of-type,
#stacks_in_7481-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7481-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7481-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7481-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7481-wrapper.card,
#stacks_in_7481-wrapper.card.custom-shadow,
#stacks_in_7481-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7481-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7481-wrapper .card-footer {
	
}

 

#stacks_in_7481-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7493-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7493-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7493-header {
	margin-bottom: 0;
}






.stacks_in_7493-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_7493-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7493-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7493-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7493-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7493-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_7495.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7495.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7495.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7495.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7495.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7495.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7495.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7495.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7495.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7495.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_7482 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7482 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7482 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7482 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7482 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7482 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7482 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested2)";
	text-transform: capitalize;
}





#stacks_in_7484-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7484-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7484-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7484-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7484-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_7486-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_7486-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_7486-wrapper a,
#stacks_in_7486-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_7486-wrapper a:hover,
#stacks_in_7486-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_7486-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7497-wrapper {
	
	
	
}

#stacks_in_7497-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7497-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7497-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7497-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7497-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7497-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7497-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7497-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_7499-wrapper {
	
	
	
}

#stacks_in_7499-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7499-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7499-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7499-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7499-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7499-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7499-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7499-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_out_7503 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7503 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7503 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7503 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7503 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7503 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7503 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested)";
	text-transform: capitalize;
}





#stacks_in_7505-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(107, 0, 255, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_7507-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7507-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7507-wrapper.custom-radius,
#stacks_in_7507-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7507-wrapper .card-body {
	
	
}

#stacks_in_7507-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_7507-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7507-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7507-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7507-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7507-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7507-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7507-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7507-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7507-wrapper .card-header h1,
#stacks_in_7507-wrapper .card-header h2,
#stacks_in_7507-wrapper .card-header h3,
#stacks_in_7507-wrapper .card-header h4,
#stacks_in_7507-wrapper .card-header h5,
#stacks_in_7507-wrapper .card-header h6,
#stacks_in_7507-wrapper .card-header p:last-of-type,
#stacks_in_7507-wrapper .card-header small,
#stacks_in_7507-wrapper .card-footer h1,
#stacks_in_7507-wrapper .card-footer h2,
#stacks_in_7507-wrapper .card-footer h3,
#stacks_in_7507-wrapper .card-footer h4,
#stacks_in_7507-wrapper .card-footer h5,
#stacks_in_7507-wrapper .card-footer h6,
#stacks_in_7507-wrapper .card-footer p:last-of-type,
#stacks_in_7507-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7507-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7507-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7507-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7507-wrapper.card,
#stacks_in_7507-wrapper.card.custom-shadow,
#stacks_in_7507-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7507-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7507-wrapper .card-footer {
	
}

 

#stacks_in_7507-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7540-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7540-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7540-header {
	margin-bottom: 0;
}






.stacks_in_7540-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_7540-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7540-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7540-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7540-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7540-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_7544.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7544.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7544.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7544.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7544.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7544.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7544.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7544.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7544.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7544.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_7509-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(107, 0, 255, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7509-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7509-header {
	margin-bottom: 0;
}






.stacks_in_7509-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_7509-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7509-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7509-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7509-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7509-header {
		font-size: 2.00rem;
	}
}
#stacks_out_7512 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7512 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7512 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7512 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7512 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7512 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7512 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested-text)";
	text-transform: capitalize;
}





#stacks_in_7513-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7513-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7513-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7513-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7513-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_7515-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_7515-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_7515-wrapper a,
#stacks_in_7515-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_7515-wrapper a:hover,
#stacks_in_7515-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_7515-wrapper p:last-of-type {
		margin-bottom: 0;
	}


 

#stacks_in_7518-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7518-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7518-wrapper.custom-radius,
#stacks_in_7518-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7518-wrapper .card-body {
	
	
}

#stacks_in_7518-wrapper .card-body {
	
	
	background: rgba(107, 0, 255, 0.15);
	
}



#stacks_in_7518-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7518-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7518-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7518-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7518-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7518-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7518-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7518-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7518-wrapper .card-header h1,
#stacks_in_7518-wrapper .card-header h2,
#stacks_in_7518-wrapper .card-header h3,
#stacks_in_7518-wrapper .card-header h4,
#stacks_in_7518-wrapper .card-header h5,
#stacks_in_7518-wrapper .card-header h6,
#stacks_in_7518-wrapper .card-header p:last-of-type,
#stacks_in_7518-wrapper .card-header small,
#stacks_in_7518-wrapper .card-footer h1,
#stacks_in_7518-wrapper .card-footer h2,
#stacks_in_7518-wrapper .card-footer h3,
#stacks_in_7518-wrapper .card-footer h4,
#stacks_in_7518-wrapper .card-footer h5,
#stacks_in_7518-wrapper .card-footer h6,
#stacks_in_7518-wrapper .card-footer p:last-of-type,
#stacks_in_7518-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7518-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7518-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7518-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7518-wrapper.card,
#stacks_in_7518-wrapper.card.custom-shadow,
#stacks_in_7518-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7518-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7518-wrapper .card-footer {
	
}

 

#stacks_in_7518-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7547-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7547-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7547-header {
	margin-bottom: 0;
}






.stacks_in_7547-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_7547-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7547-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7547-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7547-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7547-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_7551.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7551.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7551.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7551.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7551.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7551.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7551.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7551.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7551.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7551.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_7519 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7519 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7519 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7519 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7519 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7519 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7519 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested2)";
	text-transform: capitalize;
}





#stacks_in_7521-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7521-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7521-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7521-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7521-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_7523-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_7523-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_7523-wrapper a,
#stacks_in_7523-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_7523-wrapper a:hover,
#stacks_in_7523-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_7523-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7553-wrapper {
	
	
	
}

#stacks_in_7553-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7553-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7553-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7553-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7553-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7553-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7553-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7553-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_7556-wrapper {
	
	
	
}

#stacks_in_7556-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7556-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7556-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7556-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7556-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7556-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7556-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7556-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_out_7559 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7559 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7559 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7559 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7559 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7559 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7559 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested)";
	text-transform: capitalize;
}





#stacks_in_7561-border {
			
		
			
			
			/* Border Style */
			 
			border-style: ridge;
			
			
			
			
			/* Border Color */
			 
			border-color: rgba(79, 182, 197, 1.00) !important;
			
		
			
		
			

			/* Rounded Corners */
			

}





 

#stacks_in_7563-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7563-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7563-wrapper.custom-radius,
#stacks_in_7563-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7563-wrapper .card-body {
	
	
}

#stacks_in_7563-wrapper .card-body {
	
	background-color: var(--bs-gray-100);
	
	
}



#stacks_in_7563-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7563-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7563-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7563-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7563-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7563-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7563-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7563-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7563-wrapper .card-header h1,
#stacks_in_7563-wrapper .card-header h2,
#stacks_in_7563-wrapper .card-header h3,
#stacks_in_7563-wrapper .card-header h4,
#stacks_in_7563-wrapper .card-header h5,
#stacks_in_7563-wrapper .card-header h6,
#stacks_in_7563-wrapper .card-header p:last-of-type,
#stacks_in_7563-wrapper .card-header small,
#stacks_in_7563-wrapper .card-footer h1,
#stacks_in_7563-wrapper .card-footer h2,
#stacks_in_7563-wrapper .card-footer h3,
#stacks_in_7563-wrapper .card-footer h4,
#stacks_in_7563-wrapper .card-footer h5,
#stacks_in_7563-wrapper .card-footer h6,
#stacks_in_7563-wrapper .card-footer p:last-of-type,
#stacks_in_7563-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7563-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7563-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7563-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7563-wrapper.card,
#stacks_in_7563-wrapper.card.custom-shadow,
#stacks_in_7563-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7563-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7563-wrapper .card-footer {
	
}

 

#stacks_in_7563-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7582-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7582-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7582-header {
	margin-bottom: 0;
}






.stacks_in_7582-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_7582-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7582-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7582-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7582-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7582-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_7584.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7584.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7584.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7584.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7584.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7584.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7584.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7584.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7584.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7584.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_7565-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(79, 182, 197, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7565-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7565-header {
	margin-bottom: 0;
}






.stacks_in_7565-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_7565-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7565-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7565-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7565-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7565-header {
		font-size: 2.00rem;
	}
}
#stacks_out_7568 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7568 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7568 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7568 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7568 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7568 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7568 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested-text)";
	text-transform: capitalize;
}





#stacks_in_7569-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7569-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7569-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7569-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7569-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_7571-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_7571-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_7571-wrapper a,
#stacks_in_7571-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_7571-wrapper a:hover,
#stacks_in_7571-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_7571-wrapper p:last-of-type {
		margin-bottom: 0;
	}


 

#stacks_in_7574-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_7574-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_7574-wrapper.custom-radius,
#stacks_in_7574-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_7574-wrapper .card-body {
	
	
}

#stacks_in_7574-wrapper .card-body {
	
	
	background: rgba(79, 182, 197, 0.15);
	
}



#stacks_in_7574-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_7574-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_7574-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_7574-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_7574-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_7574-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_7574-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_7574-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_7574-wrapper .card-header h1,
#stacks_in_7574-wrapper .card-header h2,
#stacks_in_7574-wrapper .card-header h3,
#stacks_in_7574-wrapper .card-header h4,
#stacks_in_7574-wrapper .card-header h5,
#stacks_in_7574-wrapper .card-header h6,
#stacks_in_7574-wrapper .card-header p:last-of-type,
#stacks_in_7574-wrapper .card-header small,
#stacks_in_7574-wrapper .card-footer h1,
#stacks_in_7574-wrapper .card-footer h2,
#stacks_in_7574-wrapper .card-footer h3,
#stacks_in_7574-wrapper .card-footer h4,
#stacks_in_7574-wrapper .card-footer h5,
#stacks_in_7574-wrapper .card-footer h6,
#stacks_in_7574-wrapper .card-footer p:last-of-type,
#stacks_in_7574-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_7574-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_7574-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_7574-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_7574-wrapper.card,
#stacks_in_7574-wrapper.card.custom-shadow,
#stacks_in_7574-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_7574-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_7574-wrapper .card-footer {
	
}

 

#stacks_in_7574-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_7586-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7586-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7586-header {
	margin-bottom: 0;
}






.stacks_in_7586-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_7586-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7586-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7586-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7586-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7586-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_7588.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_7588.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_7588.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_7588.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_7588.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_7588.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7588.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_7588.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_7588.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_7588.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_7575 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_7575 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_7575 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_7575 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_7575 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_7575 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_7575 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (battle-tested2)";
	text-transform: capitalize;
}





#stacks_in_7577-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7577-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7577-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7577-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7577-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_7579-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_7579-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_7579-wrapper a,
#stacks_in_7579-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_7579-wrapper a:hover,
#stacks_in_7579-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_7579-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7590-wrapper {
	
	
	
}

#stacks_in_7590-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7590-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7590-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7590-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7590-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7590-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7590-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7590-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_7592-wrapper {
	
	
	
}

#stacks_in_7592-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_7592-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_7592-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_7592-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_7592-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_7592-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_7592-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_7592-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_8221-wrapper {
	
}

#stacks_in_8221-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_8221-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_8221-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_8221-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_8221-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_8222-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8222-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8222-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8222-margins.padding-advanced {
	padding: 3.00rem 0.00rem 3.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_8224-wrapper,
#stacks_in_8224-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_8224-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_8224-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_8224-wrapper {
	background-position: center center;
}


#stacks_in_8224-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_8224-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_8224-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_8224-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_8224-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_8224-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_8224-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_8224-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_8224-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_8224-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_8224-wrapper.bkg-preset {
	background: var(--bs-white);
}

#stacks_in_8224-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_8224-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_8224-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_8224-wrapper.custom-corners,
#stacks_in_8224-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_8224-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_8224-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_8224-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_8224-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_8224-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	











@media (max-width: 575px) {
	
	#stacks_in_8226-wrapper .col {
		
	}
	
}





#stacks_in_8230-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8230-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8230-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8230-margins.padding-advanced {
	padding: 2.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8230-margins.padding-advanced {
		padding: 2.00rem 1.00rem 0.00rem 1.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_8230-margins.padding-advanced {
		padding: 2.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_8232-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8232-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8232-header {
	margin-bottom: 0;
}






.stacks_in_8232-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_8232-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8232-header {
		font-size: 1.40rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8232-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8232-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8232-header {
		font-size: 3.00rem;
	}
}


#stacks_out_8236 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_8236 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_8236 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_8236 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_8236 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_8236 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_8236 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (typical-head)";
	text-transform: capitalize;
}


 

#stacks_in_8238-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8238-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8238-wrapper.custom-radius,
#stacks_in_8238-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8238-wrapper .card-body {
	
	
}

#stacks_in_8238-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_8238-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8238-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8238-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8238-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8238-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8238-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8238-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8238-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8238-wrapper .card-header h1,
#stacks_in_8238-wrapper .card-header h2,
#stacks_in_8238-wrapper .card-header h3,
#stacks_in_8238-wrapper .card-header h4,
#stacks_in_8238-wrapper .card-header h5,
#stacks_in_8238-wrapper .card-header h6,
#stacks_in_8238-wrapper .card-header p:last-of-type,
#stacks_in_8238-wrapper .card-header small,
#stacks_in_8238-wrapper .card-footer h1,
#stacks_in_8238-wrapper .card-footer h2,
#stacks_in_8238-wrapper .card-footer h3,
#stacks_in_8238-wrapper .card-footer h4,
#stacks_in_8238-wrapper .card-footer h5,
#stacks_in_8238-wrapper .card-footer h6,
#stacks_in_8238-wrapper .card-footer p:last-of-type,
#stacks_in_8238-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8238-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8238-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8238-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8238-wrapper.card,
#stacks_in_8238-wrapper.card.custom-shadow,
#stacks_in_8238-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8238-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_8238-wrapper .card-footer {
	
}

 

#stacks_in_8238-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8355-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8355-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8355-header {
	margin-bottom: 0;
}






.stacks_in_8355-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8355-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8355-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8355-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8355-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8355-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8357.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8357.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8357.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8357.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8357.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8357.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8357.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8357.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8357.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8357.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_8240 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_8240 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_8240 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_8240 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_8240 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_8240 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_8240 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (typical)";
	text-transform: capitalize;
}





#stacks_in_8242-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8242-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8242-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8242-margins.padding-advanced {
	padding: 0.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_8244-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-danger);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8244-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8244-header {
	margin-bottom: 0;
}






.stacks_in_8244-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_8244-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8244-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8244-header {
		font-size: 1.40rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8244-header {
		font-size: 1.80rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8244-header {
		font-size: 1.80rem;
	}
}



#stacks_in_8247-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8247-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8247-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8247-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8248-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8248-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8248-wrapper.custom-radius,
#stacks_in_8248-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8248-wrapper .card-body {
	
	
}

#stacks_in_8248-wrapper .card-body {
	
	
	background: rgba(251, 0, 7, 0.15);
	
}



#stacks_in_8248-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8248-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8248-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8248-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8248-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8248-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8248-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8248-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8248-wrapper .card-header h1,
#stacks_in_8248-wrapper .card-header h2,
#stacks_in_8248-wrapper .card-header h3,
#stacks_in_8248-wrapper .card-header h4,
#stacks_in_8248-wrapper .card-header h5,
#stacks_in_8248-wrapper .card-header h6,
#stacks_in_8248-wrapper .card-header p:last-of-type,
#stacks_in_8248-wrapper .card-header small,
#stacks_in_8248-wrapper .card-footer h1,
#stacks_in_8248-wrapper .card-footer h2,
#stacks_in_8248-wrapper .card-footer h3,
#stacks_in_8248-wrapper .card-footer h4,
#stacks_in_8248-wrapper .card-footer h5,
#stacks_in_8248-wrapper .card-footer h6,
#stacks_in_8248-wrapper .card-footer p:last-of-type,
#stacks_in_8248-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8248-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8248-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8248-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8248-wrapper.card,
#stacks_in_8248-wrapper.card.custom-shadow,
#stacks_in_8248-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8248-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8248-wrapper .card-footer {
	
}

 

#stacks_in_8248-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8359-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8359-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8359-header {
	margin-bottom: 0;
}






.stacks_in_8359-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8359-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8359-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8359-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8359-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8359-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8361.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8361.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8361.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8361.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8361.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8361.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8361.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8361.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8361.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8361.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8250-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8250-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8250-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8250-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8252-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8252-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8252-wrapper a,
#stacks_in_8252-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8252-wrapper a:hover,
#stacks_in_8252-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8252-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8363-wrapper {
	
	
	
}

#stacks_in_8363-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8363-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8363-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8363-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8363-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8363-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8363-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8363-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8255-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8255-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8255-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8255-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8256-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8256-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8256-wrapper.custom-radius,
#stacks_in_8256-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8256-wrapper .card-body {
	
	
}

#stacks_in_8256-wrapper .card-body {
	
	
	background: rgba(251, 0, 7, 0.15);
	
}



#stacks_in_8256-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8256-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8256-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8256-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8256-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8256-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8256-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8256-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8256-wrapper .card-header h1,
#stacks_in_8256-wrapper .card-header h2,
#stacks_in_8256-wrapper .card-header h3,
#stacks_in_8256-wrapper .card-header h4,
#stacks_in_8256-wrapper .card-header h5,
#stacks_in_8256-wrapper .card-header h6,
#stacks_in_8256-wrapper .card-header p:last-of-type,
#stacks_in_8256-wrapper .card-header small,
#stacks_in_8256-wrapper .card-footer h1,
#stacks_in_8256-wrapper .card-footer h2,
#stacks_in_8256-wrapper .card-footer h3,
#stacks_in_8256-wrapper .card-footer h4,
#stacks_in_8256-wrapper .card-footer h5,
#stacks_in_8256-wrapper .card-footer h6,
#stacks_in_8256-wrapper .card-footer p:last-of-type,
#stacks_in_8256-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8256-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8256-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8256-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8256-wrapper.card,
#stacks_in_8256-wrapper.card.custom-shadow,
#stacks_in_8256-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8256-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8256-wrapper .card-footer {
	
}

 

#stacks_in_8256-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8365-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8365-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8365-header {
	margin-bottom: 0;
}






.stacks_in_8365-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8365-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8365-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8365-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8365-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8365-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8367.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8367.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8367.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8367.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8367.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8367.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8367.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8367.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8367.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8367.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8258-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8258-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8258-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8258-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8260-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8260-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8260-wrapper a,
#stacks_in_8260-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8260-wrapper a:hover,
#stacks_in_8260-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8260-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8369-wrapper {
	
	
	
}

#stacks_in_8369-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8369-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8369-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8369-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8369-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8369-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8369-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8369-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8263-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8263-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8263-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8263-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8264-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8264-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8264-wrapper.custom-radius,
#stacks_in_8264-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8264-wrapper .card-body {
	
	
}

#stacks_in_8264-wrapper .card-body {
	
	
	background: rgba(251, 0, 7, 0.15);
	
}



#stacks_in_8264-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8264-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8264-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8264-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8264-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8264-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8264-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8264-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8264-wrapper .card-header h1,
#stacks_in_8264-wrapper .card-header h2,
#stacks_in_8264-wrapper .card-header h3,
#stacks_in_8264-wrapper .card-header h4,
#stacks_in_8264-wrapper .card-header h5,
#stacks_in_8264-wrapper .card-header h6,
#stacks_in_8264-wrapper .card-header p:last-of-type,
#stacks_in_8264-wrapper .card-header small,
#stacks_in_8264-wrapper .card-footer h1,
#stacks_in_8264-wrapper .card-footer h2,
#stacks_in_8264-wrapper .card-footer h3,
#stacks_in_8264-wrapper .card-footer h4,
#stacks_in_8264-wrapper .card-footer h5,
#stacks_in_8264-wrapper .card-footer h6,
#stacks_in_8264-wrapper .card-footer p:last-of-type,
#stacks_in_8264-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8264-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8264-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8264-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8264-wrapper.card,
#stacks_in_8264-wrapper.card.custom-shadow,
#stacks_in_8264-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8264-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8264-wrapper .card-footer {
	
}

 

#stacks_in_8264-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8371-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8371-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8371-header {
	margin-bottom: 0;
}






.stacks_in_8371-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8371-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8371-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8371-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8371-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8371-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8373.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8373.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8373.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8373.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8373.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8373.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8373.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8373.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8373.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8373.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8266-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8266-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8266-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8266-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8268-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8268-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8268-wrapper a,
#stacks_in_8268-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8268-wrapper a:hover,
#stacks_in_8268-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8268-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8375-wrapper {
	
	
	
}

#stacks_in_8375-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8375-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8375-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8375-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8375-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8375-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8375-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8375-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8271-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8271-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8271-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8271-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8272-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8272-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8272-wrapper.custom-radius,
#stacks_in_8272-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8272-wrapper .card-body {
	
	
}

#stacks_in_8272-wrapper .card-body {
	
	
	background: rgba(251, 0, 7, 0.15);
	
}



#stacks_in_8272-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8272-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8272-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8272-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8272-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8272-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8272-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8272-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8272-wrapper .card-header h1,
#stacks_in_8272-wrapper .card-header h2,
#stacks_in_8272-wrapper .card-header h3,
#stacks_in_8272-wrapper .card-header h4,
#stacks_in_8272-wrapper .card-header h5,
#stacks_in_8272-wrapper .card-header h6,
#stacks_in_8272-wrapper .card-header p:last-of-type,
#stacks_in_8272-wrapper .card-header small,
#stacks_in_8272-wrapper .card-footer h1,
#stacks_in_8272-wrapper .card-footer h2,
#stacks_in_8272-wrapper .card-footer h3,
#stacks_in_8272-wrapper .card-footer h4,
#stacks_in_8272-wrapper .card-footer h5,
#stacks_in_8272-wrapper .card-footer h6,
#stacks_in_8272-wrapper .card-footer p:last-of-type,
#stacks_in_8272-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8272-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8272-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8272-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8272-wrapper.card,
#stacks_in_8272-wrapper.card.custom-shadow,
#stacks_in_8272-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8272-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8272-wrapper .card-footer {
	
}

 

#stacks_in_8272-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8377-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8377-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8377-header {
	margin-bottom: 0;
}






.stacks_in_8377-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8377-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8377-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8377-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8377-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8377-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8379.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8379.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8379.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8379.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8379.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8379.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8379.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8379.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8379.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8379.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8274-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8274-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8274-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8274-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8276-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8276-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8276-wrapper a,
#stacks_in_8276-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8276-wrapper a:hover,
#stacks_in_8276-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8276-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8381-wrapper {
	
	
	
}

#stacks_in_8381-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8381-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8381-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8381-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8381-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8381-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8381-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8381-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8279-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8279-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8279-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8279-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8280-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8280-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8280-wrapper.custom-radius,
#stacks_in_8280-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8280-wrapper .card-body {
	
	
}

#stacks_in_8280-wrapper .card-body {
	
	
	background: rgba(251, 0, 7, 0.15);
	
}



#stacks_in_8280-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8280-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8280-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8280-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8280-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8280-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8280-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8280-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8280-wrapper .card-header h1,
#stacks_in_8280-wrapper .card-header h2,
#stacks_in_8280-wrapper .card-header h3,
#stacks_in_8280-wrapper .card-header h4,
#stacks_in_8280-wrapper .card-header h5,
#stacks_in_8280-wrapper .card-header h6,
#stacks_in_8280-wrapper .card-header p:last-of-type,
#stacks_in_8280-wrapper .card-header small,
#stacks_in_8280-wrapper .card-footer h1,
#stacks_in_8280-wrapper .card-footer h2,
#stacks_in_8280-wrapper .card-footer h3,
#stacks_in_8280-wrapper .card-footer h4,
#stacks_in_8280-wrapper .card-footer h5,
#stacks_in_8280-wrapper .card-footer h6,
#stacks_in_8280-wrapper .card-footer p:last-of-type,
#stacks_in_8280-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8280-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8280-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8280-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8280-wrapper.card,
#stacks_in_8280-wrapper.card.custom-shadow,
#stacks_in_8280-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8280-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8280-wrapper .card-footer {
	
}

 

#stacks_in_8280-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8383-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8383-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8383-header {
	margin-bottom: 0;
}






.stacks_in_8383-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8383-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8383-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8383-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8383-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8383-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8385.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8385.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8385.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8385.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8385.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8385.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8385.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8385.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8385.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8385.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8282-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8282-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8282-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8282-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8284-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8284-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8284-wrapper a,
#stacks_in_8284-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8284-wrapper a:hover,
#stacks_in_8284-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8284-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8387-wrapper {
	
	
	
}

#stacks_in_8387-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8387-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8387-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8387-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8387-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8387-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8387-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8387-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8287-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8287-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8287-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8287-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8288-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8288-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8288-wrapper.custom-radius,
#stacks_in_8288-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8288-wrapper .card-body {
	
	
}

#stacks_in_8288-wrapper .card-body {
	
	
	background: rgba(251, 0, 7, 0.15);
	
}



#stacks_in_8288-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8288-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8288-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8288-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8288-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8288-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8288-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8288-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8288-wrapper .card-header h1,
#stacks_in_8288-wrapper .card-header h2,
#stacks_in_8288-wrapper .card-header h3,
#stacks_in_8288-wrapper .card-header h4,
#stacks_in_8288-wrapper .card-header h5,
#stacks_in_8288-wrapper .card-header h6,
#stacks_in_8288-wrapper .card-header p:last-of-type,
#stacks_in_8288-wrapper .card-header small,
#stacks_in_8288-wrapper .card-footer h1,
#stacks_in_8288-wrapper .card-footer h2,
#stacks_in_8288-wrapper .card-footer h3,
#stacks_in_8288-wrapper .card-footer h4,
#stacks_in_8288-wrapper .card-footer h5,
#stacks_in_8288-wrapper .card-footer h6,
#stacks_in_8288-wrapper .card-footer p:last-of-type,
#stacks_in_8288-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8288-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8288-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8288-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8288-wrapper.card,
#stacks_in_8288-wrapper.card.custom-shadow,
#stacks_in_8288-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8288-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8288-wrapper .card-footer {
	
}

 

#stacks_in_8288-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8389-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8389-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8389-header {
	margin-bottom: 0;
}






.stacks_in_8389-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8389-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8389-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8389-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8389-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8389-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8391.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8391.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8391.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8391.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8391.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8391.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8391.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8391.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8391.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8391.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8290-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8290-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8290-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8290-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8292-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8292-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8292-wrapper a,
#stacks_in_8292-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8292-wrapper a:hover,
#stacks_in_8292-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8292-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8393-wrapper {
	
	
	
}

#stacks_in_8393-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8393-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8393-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8393-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8393-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8393-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8393-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8393-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8395-wrapper {
	
	
	
}

#stacks_in_8395-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8395-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8395-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8395-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8395-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8395-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8395-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8395-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_out_8296 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_8296 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_8296 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_8296 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_8296 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_8296 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_8296 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (typical-head)";
	text-transform: capitalize;
}


 

#stacks_in_8298-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8298-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8298-wrapper.custom-radius,
#stacks_in_8298-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8298-wrapper .card-body {
	
	
}

#stacks_in_8298-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_8298-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8298-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8298-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8298-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8298-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8298-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8298-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8298-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8298-wrapper .card-header h1,
#stacks_in_8298-wrapper .card-header h2,
#stacks_in_8298-wrapper .card-header h3,
#stacks_in_8298-wrapper .card-header h4,
#stacks_in_8298-wrapper .card-header h5,
#stacks_in_8298-wrapper .card-header h6,
#stacks_in_8298-wrapper .card-header p:last-of-type,
#stacks_in_8298-wrapper .card-header small,
#stacks_in_8298-wrapper .card-footer h1,
#stacks_in_8298-wrapper .card-footer h2,
#stacks_in_8298-wrapper .card-footer h3,
#stacks_in_8298-wrapper .card-footer h4,
#stacks_in_8298-wrapper .card-footer h5,
#stacks_in_8298-wrapper .card-footer h6,
#stacks_in_8298-wrapper .card-footer p:last-of-type,
#stacks_in_8298-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8298-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8298-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8298-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8298-wrapper.card,
#stacks_in_8298-wrapper.card.custom-shadow,
#stacks_in_8298-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8298-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_8298-wrapper .card-footer {
	
}

 

#stacks_in_8298-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8397-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8397-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8397-header {
	margin-bottom: 0;
}






.stacks_in_8397-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8397-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8397-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8397-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8397-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8397-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8399.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8399.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8399.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8399.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8399.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8399.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8399.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8399.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8399.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8399.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}

#stacks_out_8300 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_8300 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_8300 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_8300 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_8300 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_8300 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_8300 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (typical)";
	text-transform: capitalize;
}





#stacks_in_8302-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8302-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8302-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8302-margins.padding-advanced {
	padding: 0.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_8304-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(121, 198, 59, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8304-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8304-header {
	margin-bottom: 0;
}






.stacks_in_8304-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_8304-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8304-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8304-header {
		font-size: 1.40rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8304-header {
		font-size: 1.80rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8304-header {
		font-size: 1.80rem;
	}
}



#stacks_in_8307-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8307-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8307-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8307-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8308-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8308-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8308-wrapper.custom-radius,
#stacks_in_8308-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8308-wrapper .card-body {
	
	
}

#stacks_in_8308-wrapper .card-body {
	
	
	background: rgba(121, 198, 59, 0.15);
	
}



#stacks_in_8308-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8308-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8308-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8308-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8308-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8308-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8308-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8308-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8308-wrapper .card-header h1,
#stacks_in_8308-wrapper .card-header h2,
#stacks_in_8308-wrapper .card-header h3,
#stacks_in_8308-wrapper .card-header h4,
#stacks_in_8308-wrapper .card-header h5,
#stacks_in_8308-wrapper .card-header h6,
#stacks_in_8308-wrapper .card-header p:last-of-type,
#stacks_in_8308-wrapper .card-header small,
#stacks_in_8308-wrapper .card-footer h1,
#stacks_in_8308-wrapper .card-footer h2,
#stacks_in_8308-wrapper .card-footer h3,
#stacks_in_8308-wrapper .card-footer h4,
#stacks_in_8308-wrapper .card-footer h5,
#stacks_in_8308-wrapper .card-footer h6,
#stacks_in_8308-wrapper .card-footer p:last-of-type,
#stacks_in_8308-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8308-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8308-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8308-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8308-wrapper.card,
#stacks_in_8308-wrapper.card.custom-shadow,
#stacks_in_8308-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8308-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8308-wrapper .card-footer {
	
}

 

#stacks_in_8308-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8401-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8401-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8401-header {
	margin-bottom: 0;
}






.stacks_in_8401-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8401-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8401-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8401-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8401-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8401-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8403.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8403.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8403.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8403.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8403.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8403.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8403.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8403.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8403.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8403.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8310-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8310-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8310-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8310-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8312-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8312-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8312-wrapper a,
#stacks_in_8312-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8312-wrapper a:hover,
#stacks_in_8312-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8312-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8405-wrapper {
	
	
	
}

#stacks_in_8405-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8405-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8405-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8405-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8405-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8405-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8405-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8405-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8315-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8315-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8315-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8315-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8316-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8316-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8316-wrapper.custom-radius,
#stacks_in_8316-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8316-wrapper .card-body {
	
	
}

#stacks_in_8316-wrapper .card-body {
	
	
	background: rgba(121, 198, 59, 0.15);
	
}



#stacks_in_8316-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8316-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8316-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8316-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8316-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8316-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8316-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8316-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8316-wrapper .card-header h1,
#stacks_in_8316-wrapper .card-header h2,
#stacks_in_8316-wrapper .card-header h3,
#stacks_in_8316-wrapper .card-header h4,
#stacks_in_8316-wrapper .card-header h5,
#stacks_in_8316-wrapper .card-header h6,
#stacks_in_8316-wrapper .card-header p:last-of-type,
#stacks_in_8316-wrapper .card-header small,
#stacks_in_8316-wrapper .card-footer h1,
#stacks_in_8316-wrapper .card-footer h2,
#stacks_in_8316-wrapper .card-footer h3,
#stacks_in_8316-wrapper .card-footer h4,
#stacks_in_8316-wrapper .card-footer h5,
#stacks_in_8316-wrapper .card-footer h6,
#stacks_in_8316-wrapper .card-footer p:last-of-type,
#stacks_in_8316-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8316-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8316-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8316-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8316-wrapper.card,
#stacks_in_8316-wrapper.card.custom-shadow,
#stacks_in_8316-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8316-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8316-wrapper .card-footer {
	
}

 

#stacks_in_8316-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8407-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8407-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8407-header {
	margin-bottom: 0;
}






.stacks_in_8407-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8407-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8407-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8407-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8407-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8407-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8409.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8409.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8409.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8409.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8409.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8409.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8409.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8409.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8409.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8409.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8318-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8318-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8318-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8318-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8320-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8320-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8320-wrapper a,
#stacks_in_8320-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8320-wrapper a:hover,
#stacks_in_8320-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8320-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8411-wrapper {
	
	
	
}

#stacks_in_8411-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8411-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8411-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8411-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8411-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8411-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8411-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8411-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8323-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8323-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8323-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8323-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8324-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8324-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8324-wrapper.custom-radius,
#stacks_in_8324-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8324-wrapper .card-body {
	
	
}

#stacks_in_8324-wrapper .card-body {
	
	
	background: rgba(121, 198, 59, 0.15);
	
}



#stacks_in_8324-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8324-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8324-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8324-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8324-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8324-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8324-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8324-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8324-wrapper .card-header h1,
#stacks_in_8324-wrapper .card-header h2,
#stacks_in_8324-wrapper .card-header h3,
#stacks_in_8324-wrapper .card-header h4,
#stacks_in_8324-wrapper .card-header h5,
#stacks_in_8324-wrapper .card-header h6,
#stacks_in_8324-wrapper .card-header p:last-of-type,
#stacks_in_8324-wrapper .card-header small,
#stacks_in_8324-wrapper .card-footer h1,
#stacks_in_8324-wrapper .card-footer h2,
#stacks_in_8324-wrapper .card-footer h3,
#stacks_in_8324-wrapper .card-footer h4,
#stacks_in_8324-wrapper .card-footer h5,
#stacks_in_8324-wrapper .card-footer h6,
#stacks_in_8324-wrapper .card-footer p:last-of-type,
#stacks_in_8324-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8324-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8324-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8324-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8324-wrapper.card,
#stacks_in_8324-wrapper.card.custom-shadow,
#stacks_in_8324-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8324-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8324-wrapper .card-footer {
	
}

 

#stacks_in_8324-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8413-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8413-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8413-header {
	margin-bottom: 0;
}






.stacks_in_8413-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8413-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8413-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8413-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8413-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8413-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8415.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8415.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8415.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8415.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8415.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8415.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8415.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8415.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8415.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8415.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8326-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8326-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8326-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8326-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8328-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8328-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8328-wrapper a,
#stacks_in_8328-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8328-wrapper a:hover,
#stacks_in_8328-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8328-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8417-wrapper {
	
	
	
}

#stacks_in_8417-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8417-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8417-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8417-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8417-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8417-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8417-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8417-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8331-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8331-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8331-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8331-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8332-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8332-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8332-wrapper.custom-radius,
#stacks_in_8332-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8332-wrapper .card-body {
	
	
}

#stacks_in_8332-wrapper .card-body {
	
	
	background: rgba(121, 198, 59, 0.15);
	
}



#stacks_in_8332-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8332-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8332-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8332-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8332-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8332-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8332-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8332-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8332-wrapper .card-header h1,
#stacks_in_8332-wrapper .card-header h2,
#stacks_in_8332-wrapper .card-header h3,
#stacks_in_8332-wrapper .card-header h4,
#stacks_in_8332-wrapper .card-header h5,
#stacks_in_8332-wrapper .card-header h6,
#stacks_in_8332-wrapper .card-header p:last-of-type,
#stacks_in_8332-wrapper .card-header small,
#stacks_in_8332-wrapper .card-footer h1,
#stacks_in_8332-wrapper .card-footer h2,
#stacks_in_8332-wrapper .card-footer h3,
#stacks_in_8332-wrapper .card-footer h4,
#stacks_in_8332-wrapper .card-footer h5,
#stacks_in_8332-wrapper .card-footer h6,
#stacks_in_8332-wrapper .card-footer p:last-of-type,
#stacks_in_8332-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8332-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8332-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8332-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8332-wrapper.card,
#stacks_in_8332-wrapper.card.custom-shadow,
#stacks_in_8332-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8332-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8332-wrapper .card-footer {
	
}

 

#stacks_in_8332-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8419-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8419-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8419-header {
	margin-bottom: 0;
}






.stacks_in_8419-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8419-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8419-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8419-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8419-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8419-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8421.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8421.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8421.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8421.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8421.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8421.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8421.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8421.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8421.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8421.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8334-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8334-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8334-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8334-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8336-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8336-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8336-wrapper a,
#stacks_in_8336-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8336-wrapper a:hover,
#stacks_in_8336-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8336-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8423-wrapper {
	
	
	
}

#stacks_in_8423-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8423-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8423-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8423-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8423-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8423-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8423-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8423-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8339-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8339-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8339-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8339-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8340-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8340-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8340-wrapper.custom-radius,
#stacks_in_8340-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8340-wrapper .card-body {
	
	
}

#stacks_in_8340-wrapper .card-body {
	
	
	background: rgba(121, 198, 59, 0.15);
	
}



#stacks_in_8340-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8340-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8340-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8340-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8340-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8340-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8340-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8340-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8340-wrapper .card-header h1,
#stacks_in_8340-wrapper .card-header h2,
#stacks_in_8340-wrapper .card-header h3,
#stacks_in_8340-wrapper .card-header h4,
#stacks_in_8340-wrapper .card-header h5,
#stacks_in_8340-wrapper .card-header h6,
#stacks_in_8340-wrapper .card-header p:last-of-type,
#stacks_in_8340-wrapper .card-header small,
#stacks_in_8340-wrapper .card-footer h1,
#stacks_in_8340-wrapper .card-footer h2,
#stacks_in_8340-wrapper .card-footer h3,
#stacks_in_8340-wrapper .card-footer h4,
#stacks_in_8340-wrapper .card-footer h5,
#stacks_in_8340-wrapper .card-footer h6,
#stacks_in_8340-wrapper .card-footer p:last-of-type,
#stacks_in_8340-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8340-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8340-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8340-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8340-wrapper.card,
#stacks_in_8340-wrapper.card.custom-shadow,
#stacks_in_8340-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8340-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8340-wrapper .card-footer {
	
}

 

#stacks_in_8340-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8425-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8425-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8425-header {
	margin-bottom: 0;
}






.stacks_in_8425-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8425-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8425-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8425-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8425-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8425-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8427.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8427.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8427.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8427.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8427.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8427.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8427.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8427.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8427.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8427.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8342-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8342-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8342-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8342-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8344-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8344-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8344-wrapper a,
#stacks_in_8344-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8344-wrapper a:hover,
#stacks_in_8344-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8344-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8429-wrapper {
	
	
	
}

#stacks_in_8429-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8429-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8429-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8429-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8429-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8429-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8429-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8429-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8347-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8347-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8347-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8347-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_8348-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_8348-wrapper .card-header {
	
	background-color: var(--bs-gray-100);
	
	
}

#stacks_in_8348-wrapper.custom-radius,
#stacks_in_8348-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_8348-wrapper .card-body {
	
	
}

#stacks_in_8348-wrapper .card-body {
	
	
	background: rgba(121, 198, 59, 0.15);
	
}



#stacks_in_8348-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_8348-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_8348-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_8348-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_8348-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_8348-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_8348-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_8348-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_8348-wrapper .card-header h1,
#stacks_in_8348-wrapper .card-header h2,
#stacks_in_8348-wrapper .card-header h3,
#stacks_in_8348-wrapper .card-header h4,
#stacks_in_8348-wrapper .card-header h5,
#stacks_in_8348-wrapper .card-header h6,
#stacks_in_8348-wrapper .card-header p:last-of-type,
#stacks_in_8348-wrapper .card-header small,
#stacks_in_8348-wrapper .card-footer h1,
#stacks_in_8348-wrapper .card-footer h2,
#stacks_in_8348-wrapper .card-footer h3,
#stacks_in_8348-wrapper .card-footer h4,
#stacks_in_8348-wrapper .card-footer h5,
#stacks_in_8348-wrapper .card-footer h6,
#stacks_in_8348-wrapper .card-footer p:last-of-type,
#stacks_in_8348-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_8348-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_8348-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8348-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8348-wrapper.card,
#stacks_in_8348-wrapper.card.custom-shadow,
#stacks_in_8348-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8348-wrapper > .card-body.custom-padding {
	padding: 1.00rem;
}

#stacks_in_8348-wrapper .card-footer {
	
}

 

#stacks_in_8348-wrapper img {
 	margin: 0 !important;
 }
 


h2.stacks_in_8431-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_8431-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_8431-header {
	margin-bottom: 0;
}






.stacks_in_8431-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_8431-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8431-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8431-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8431-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8431-header {
		font-size: 1.30rem;
	}
}




/* Base Margins */
.stacks_in_8433.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_8433.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_8433.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_8433.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_8433.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_8433.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8433.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_8433.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_8433.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_8433.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_8350-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8350-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8350-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8350-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8352-wrapper {
	
	
	
		
		color: rgba(13, 75, 161, 1.00);
		
		
	
}


#stacks_in_8352-wrapper {
	color: rgba(13, 75, 161, 1.00);
}

#stacks_in_8352-wrapper a,
#stacks_in_8352-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_8352-wrapper a:hover,
#stacks_in_8352-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_8352-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_8435-wrapper {
	
	
	
}

#stacks_in_8435-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8435-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8435-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8435-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8435-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8435-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8435-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8435-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8437-wrapper {
	
	
	
}

#stacks_in_8437-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_8437-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_8437-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8437-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8437-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8437-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8437-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8437-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_7998-container {
	
	
	

	
	
	

}









#stacks_in_8000-wrapper {
	
}

#stacks_in_8000-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_8000-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_8000-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_8000-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_8000-wrapper.fdy-container {
	max-width: 960px;
  }
}







#stacks_in_8008-wrapper,
#stacks_in_8008-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_8008-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_8008-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_8008-wrapper {
	background-position: center center;
}


#stacks_in_8008-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_8008-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_8008-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_8008-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_8008-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_8008-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_8008-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_8008-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_8008-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_8008-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_8008-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_8008-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_8008-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_8008-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(254, 202, 11, 1.00), transparent 70%),
	radial-gradient(circle at 100% 0%, 
		 rgba(254, 222, 36, 1.00), transparent 40%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(254, 211, 21, 1.00), transparent 50%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(255, 237, 71, 1.00), transparent 100%);
}

#stacks_in_8008-wrapper.custom-corners,
#stacks_in_8008-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_8008-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_8008-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_8008-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_8008-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_8008-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	











@media (max-width: 575px) {
	
	#stacks_in_8002-wrapper .col {
		
	}
	
}





#stacks_in_7974-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7974-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7974-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7974-margins.padding-advanced {
	padding: 2.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7974-margins.padding-advanced {
		padding: 3.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
	#stacks_in_7974-margins.padding-advanced {
		padding: 4.00rem 6.00rem 0.00rem 6.00rem;
	}
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_7357-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_7357-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_7357-header {
	margin-bottom: 0;
}






.stacks_in_7357-header {
	font-size: 1.25rem;
}

@media (min-width: 576px) {
	.stacks_in_7357-header {
		font-size: 1.35rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_7357-header {
		font-size: 2.20rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_7357-header {
		font-size: 2.20rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_7357-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_7357-header {
		font-size: 2.50rem;
	}
}





#stacks_in_8709-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8709-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8709-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8709-margins.padding-advanced {
	padding: 0.00rem 2.00rem 1.00rem 2.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8709-margins.padding-advanced {
		padding: 0.00rem 2.00rem 2.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8710-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}







#stacks_in_8710-wrapper {
	font-size: 1.10rem;
}

@media (min-width: 576px) {
	#stacks_in_8710-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_8710-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_8710-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8710-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8710-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_8710-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_7972-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_7972-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_7972-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_7972-margins.padding-advanced {
	padding: 0.00rem 2.00rem 1.00rem 2.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_7972-margins.padding-advanced {
		padding: 0.00rem 5.00rem 2.00rem 5.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_7102-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}







#stacks_in_7102-wrapper {
	font-size: 1.10rem;
}

@media (min-width: 576px) {
	#stacks_in_7102-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_7102-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_7102-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_7102-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_7102-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_7102-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_8707-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8707-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8707-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8707-margins.padding-advanced {
	padding: 0.00rem 1.00rem 3.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8707-margins.padding-advanced {
		padding: 0.00rem 5.00rem 3.00rem 5.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_8707-margins.padding-advanced {
		padding: 0.00rem 12.00rem 3.00rem 12.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8726-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8726-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8726-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8726-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8726-margins.padding-advanced {
		padding: 1.00rem 2.00rem 1.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


.stacks_in_8754-button,
.stacks_in_8754-button:focus {
	
}




.stacks_in_8754-button,
.stacks_in_8754-button:focus {
	background: rgba(252, 75, 37, 1.00);
	border-color: rgba(252, 75, 37, 1.00);
	color: rgba(255, 255, 255, 1.00);
	outline: none;
}


.stacks_in_8754-button:hover {
	background: rgba(252, 75, 37, 0.70) !important;
	border-color: rgba(252, 75, 37, 0.70) !important;
	color: rgba(255, 255, 255, 1.00) !important;
}










#stacks_in_8754-wrapper a {
	outline: none;
}

#stacks_in_8754-wrapper .btn {
	
	font-weight: 700;
	
	
}



#stacks_in_8754-wrapper .btn.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8754-wrapper .btn,
#stacks_in_8754-wrapper .btn.custom-shadow,
#stacks_in_8754-wrapper .btn.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8754-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}















#stacks_in_8024-wrapper,
#stacks_in_8024-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_8024-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_8024-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_8024-wrapper {
	background-position: center center;
}


#stacks_in_8024-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_8024-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_8024-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_8024-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_8024-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_8024-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_8024-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_8024-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_8024-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_8024-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_8024-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_8024-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_8024-wrapper.bkg-gradient-two {
	background: rgba(252, 105, 44, 0.70);
	background: linear-gradient(300deg, rgba(252, 105, 44, 0.70) 0%, rgba(252, 75, 37, 1.00) 100%);
}

#stacks_in_8024-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_8024-wrapper.custom-corners,
#stacks_in_8024-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_8024-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_8024-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_8024-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_8024-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_8024-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_8750-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8750-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8750-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8750-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8750-margins.padding-advanced {
		padding: 1.00rem 2.00rem 1.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8751-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}







#stacks_in_8751-wrapper {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_8751-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_8751-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_8751-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8751-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8751-wrapper {
		font-size: 1.30rem;
	}
}



	#stacks_in_8751-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_8023-button,
.stacks_in_8023-button:focus {
	
}







.stacks_in_8023-button,
.stacks_in_8023-button:focus {
	background: rgba(252, 75, 37, 1.00);
	background-image: linear-gradient(180deg, rgba(252, 75, 37, 1.00) 0%, rgba(252, 105, 44, 0.70) 100%);
	
	border-color: rgba(125, 178, 247, 1.00);
	color: rgba(255, 255, 255, 1.00);
	outline: none;
}


.stacks_in_8023-button:hover {
	background: rgba(5, 127, 191, 1.00) !important;
	background-image: linear-gradient(180deg, rgba(5, 127, 191, 1.00) 0%, rgba(0, 142, 193, 1.00) 100%) !important;
	border-color: rgba(5, 127, 191, 1.00) !important;
	color: rgba(255, 255, 255, 1.00) !important;
	
}






#stacks_in_8023-wrapper a {
	outline: none;
}

#stacks_in_8023-wrapper .btn {
	
	font-weight: 900;
	
	
}



#stacks_in_8023-wrapper .btn.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8023-wrapper .btn,
#stacks_in_8023-wrapper .btn.custom-shadow,
#stacks_in_8023-wrapper .btn.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_8023-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}














.stacks_in_8930-container {
	
	
	

	
	
	

}









#stacks_in_272-wrapper {
	
	max-width: 600px;
	
}

#stacks_in_272-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_272-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_272-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_272-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_272-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_1412-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1412-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1412-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1412-margins.padding-advanced {
	padding: 5.00rem 0.00rem 5.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1412-margins.padding-advanced {
		padding: 10.00rem 0.00rem 10.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






#stacks_in_276-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_276-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_276-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_276-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_276-margins.padding-advanced {
		padding: 0.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_278-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 3px rgba(12, 97, 176, 1.00);
	
	
	
}

h3.stacks_in_278-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_278-header {
	margin-bottom: 0;
}






.stacks_in_278-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_278-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_278-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_278-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_278-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_278-header {
		font-size: 2.50rem;
	}
}



#stacks_in_281-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_281-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_281-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_281-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_282-video iframe.custom-rounded-corners,
#stacks_in_282-video video.custom-rounded-corners {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_282-video iframe.custom-shadow,
#stacks_in_282-video video.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


/* Base Margins */
#stacks_in_282-video {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_282-video {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_282-video {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_282-video {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_282-video {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_282-video {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8932-container {
	
	
	

	
	
	

}








#stacks_in_1630-wrapper,
#stacks_in_1630-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1630-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1630-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1630-wrapper {
	background-position: center center;
}


#stacks_in_1630-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1630-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1630-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1630-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1630-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1630-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1630-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1630-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1630-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1630-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1630-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_1630-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_1630-wrapper.bkg-gradient-two {
	background: rgba(189, 216, 236, 1.00);
	background: linear-gradient(0deg, rgba(189, 216, 236, 1.00) 0%, rgba(255, 255, 255, 1.00) 100%);
}

#stacks_in_1630-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_1630-wrapper.custom-corners,
#stacks_in_1630-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1630-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1630-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1630-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1630-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1630-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1568-wrapper {
	
}

#stacks_in_1568-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_1568-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_1568-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_1568-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_1568-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_1638-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1638-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1638-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1638-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_1636-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_1636-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1636-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1636-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1636-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1636-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1636-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1636-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1636-header {
	font-size: 1.90rem;
}

@media (min-width: 576px) {
	.stacks_in_1636-header {
		font-size: 1.90rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1636-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1636-header {
		font-size: 2.25rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1636-header {
		font-size: 2.25rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1636-header {
		font-size: 2.25rem;
	}
}



#stacks_in_1416-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1416-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1416-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1416-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
}





#stacks_in_1428-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1428-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1428-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1428-margins.padding-advanced {
	padding: 0.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_1429-wrapper,
#stacks_in_1429-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1429-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	-webkit-backdrop-filter: blur(10px)   ;
	backdrop-filter: blur(10px)   ;
	
}

#stacks_in_1429-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1429-wrapper {
	background-position: center center;
}


#stacks_in_1429-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1429-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1429-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1429-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1429-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1429-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1429-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1429-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1429-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1429-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1429-wrapper.bkg-preset {
	background: var(--bs-gray-200);
}

#stacks_in_1429-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_1429-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_1429-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_1429-wrapper.custom-corners,
#stacks_in_1429-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1429-wrapper.custom-corners > .filters-layer {
	border-radius: 7px 7px 7px 7px;
}



#stacks_in_1429-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1429-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1429-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1429-wrapper {
	
	
	border-color: var(--bs-primary) !important;
	
	
	border-width: 7px !important;
	
	
}








	

	








#stacks_in_1431-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1431-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1431-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1431-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






#stacks_in_1435-wrapper .badge {
	
	font-weight: 700;
	
}

#stacks_in_1435-wrapper .badge.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_1435-wrapper .badge {
	
	background: var(--bs-primary);
	
	
	

	
	
	color: rgba(255, 255, 255, 1.00);
}


/* Base Margins */
#stacks_in_1435-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1435-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1435-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1435-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1435-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1435-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_1632-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1632-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1632-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1632-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1632-margins.padding-advanced {
		padding: 0.00rem 3.00rem 0.00rem 3.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_1444-header {
	
	font-weight: 400;
	
	
	
	
	
	
	
	
	color: var(--bs-secondary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_1444-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1444-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1444-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1444-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1444-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1444-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1444-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1444-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_1444-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1444-header {
		font-size: 1.70rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1444-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1444-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1444-header {
		font-size: 2.00rem;
	}
}


#stacks_in_1441-animated-divider-wrapper {
	font-size: 0 !important;
	line-height: 0 !important;
	height: 0.20rem;	
}

#stacks_in_1441-animated-divider {
	font-size: 0 !important;
	height: 0.20rem;	
	transition-duration: 1.00s;
	transition-delay: 0.00s;
	transition-property: width;
	transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
	
	width: 0%;
	
	
	
}


#stacks_in_1441-animated-divider.anim-divider-style {
	
	background-color: var(--bs-primary);
	
	
	

	
}


#stacks_in_1441-animated-divider.custom-border-radius {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

#stacks_in_1441-animated-divider.anim-div-custom-width {
	width: 30%;
}



/* Base Margins */
#stacks_in_1441-animated-divider-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1441-animated-divider-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1441-animated-divider-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1441-animated-divider-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1441-animated-divider-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1441-animated-divider-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_3670-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_3670-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3670-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3670-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3670-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3670-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3670-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_3670-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1442-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_1442-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_1442-wrapper a,
#stacks_in_1442-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_1442-wrapper a:hover,
#stacks_in_1442-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}



/* Base Margins */
#stacks_in_1442-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1442-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1442-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1442-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1442-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1442-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_1442-wrapper p:last-of-type {
		margin-bottom: 0;
	}





h2.stacks_in_1451-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_1451-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1451-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1451-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1451-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1451-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1451-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1451-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}







.stacks_in_1446-list {
	list-style: decimal;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1446-list {
	
	
	
	color: rgba(80, 131, 171, 1.00) !important;
	
}

.stacks_in_1446-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1446-list a,
.stacks_in_1446-list a:visited,
.stacks_in_1446-list a:hover,
.stacks_in_1446-list a:active {
	text-decoration: none;
}

.stacks_in_1446-list a,
.stacks_in_1446-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1446-list a:hover,
.stacks_in_1446-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1446-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1446-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1446-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1446-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1446-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1446-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1446-list .list-inline-item:not(:last-child) {

}

.stacks_in_1446-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1446-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1447-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1447-list-item.custom-icon-color .list-icon {
	color: rgba(75, 126, 37, 1.00) !important;
}

.stacks_in_1449-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1449-list-item.custom-icon-color .list-icon {
	color: rgba(75, 126, 37, 1.00) !important;
}

.stacks_in_1450-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1450-list-item.custom-icon-color .list-icon {
	color: rgba(75, 126, 37, 1.00) !important;
}

.stacks_in_1453-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1453-list-item.custom-icon-color .list-icon {
	color: rgba(75, 126, 37, 1.00) !important;
}


#stacks_in_1454-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_1454-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_1454-wrapper a,
#stacks_in_1454-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_1454-wrapper a:hover,
#stacks_in_1454-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_1454-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_1467-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1467-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1467-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1467-margins.padding-advanced {
	padding: 0.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1469-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			
		
			
		
			 
			border-color: transparent !important;
			

			/* Rounded Corners */
			

}








#stacks_in_1471-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1471-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1471-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1471-margins.padding-advanced {
	padding: 1.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_1473-wrapper .col {
		
	}
	
}




	.col.stacks_in_1475-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




#stacks_in_1477-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1477-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1477-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1477-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




/* Base Margins */
.stacks_in_1479.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1479.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1479.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1479.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1479.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1479.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


.stacks_in_1479.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1479.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1479.fdy-img source.img-fluid-fdy,
.stacks_in_1479.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1479.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1479.fdy-img source.img-upscale,
.stacks_in_1479.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1479.fdy-img.img-custom-pct {
	width: 65%;
	height: auto;
}

.stacks_in_1479.fdy-img source.img-custom-pct,
.stacks_in_1479.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1479.fdy-img.img-max-width,
.stacks_in_1479.fdy-img source.img-max-width,
.stacks_in_1479.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}


.stacks_in_1479.fdy-img,
.stacks_in_1479.fdy-img source,
.stacks_in_1479.fdy-img img {
	max-width: 100%;
	width: 35px;
	height: auto
}

@media (min-width: 576px) {
	.stacks_in_1479.fdy-img,
	.stacks_in_1479.fdy-img source,
	.stacks_in_1479.fdy-img img {
		max-width: 100%;
		width: 50px;
		height: auto;
	}
}

@media (min-width: 768px) {
	.stacks_in_1479.fdy-img,
	.stacks_in_1479.fdy-img source,
	.stacks_in_1479.fdy-img img {
		max-width: 100%;
		width: 50px;
		height: auto;
	}
}

@media (min-width: 992px) {
	.stacks_in_1479.fdy-img,
	.stacks_in_1479.fdy-img source,
	.stacks_in_1479.fdy-img img {
		max-width: 100%;
		width: 65px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1479.fdy-img,
	.stacks_in_1479.fdy-img source,
	.stacks_in_1479.fdy-img img {
		max-width: 100%;
		width: 65px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1479.fdy-img,
	.stacks_in_1479.fdy-img source,
	.stacks_in_1479.fdy-img img {
		max-width: 100%;
		width: 65px;
		height: auto;
	}
}




	.col.stacks_in_1481-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




h3.stacks_in_1482-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_1482-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1482-header {
	margin-bottom: 0;
}






.stacks_in_1482-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_1482-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1482-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1482-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1482-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1482-header {
		font-size: 1.75rem;
	}
}



#stacks_in_1485-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1485-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1485-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1485-margins.padding-advanced {
	padding: 0.00rem 1.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
.moreish-stacks_in_2965 .read-more__btn.custom{padding:10px 10px;border-radius:2px;font-size:14px;color:rgba(255, 255, 255, 1.00);background-color:rgba(34, 34, 34, 1.00);}.moreish-stacks_in_2965 .read-more__footer{text-align:left}.moreish-stacks_in_2965 .moreish-link{color:rgba(13, 75, 161, 1.00);}.moreish-stacks_in_2965 .moreish-link:hover{color:rgba(137, 166, 208, 1.00);} .moreish-stacks_in_2965 .read-more__btn.custom:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(51, 51, 51, 1.00)}.moreish-stacks_in_2965 .read-more__footer{bottom:0;background-color:#F2F3F4} .moreish-stacks_in_2965 .read-more__footer:before{height:80px;top:-80px;background-image:linear-gradient(to bottom,rgba(255,255,255,0),#F2F3F4)} 


#stacks_in_2966-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2966-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2966-wrapper a,
#stacks_in_2966-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2966-wrapper a:hover,
#stacks_in_2966-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2966-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1491-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1491-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1491-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1491-margins.padding-advanced {
	padding: 0.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1492-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			
		
			
		
			 
			border-color: transparent !important;
			

			/* Rounded Corners */
			

}








#stacks_in_1494-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1494-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1494-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1494-margins.padding-advanced {
	padding: 1.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_1496-wrapper .col {
		
	}
	
}




	.col.stacks_in_1498-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




#stacks_in_1500-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1500-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1500-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1500-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




/* Base Margins */
.stacks_in_1502.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1502.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1502.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1502.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1502.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1502.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


.stacks_in_1502.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1502.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1502.fdy-img source.img-fluid-fdy,
.stacks_in_1502.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1502.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1502.fdy-img source.img-upscale,
.stacks_in_1502.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1502.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1502.fdy-img source.img-custom-pct,
.stacks_in_1502.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1502.fdy-img.img-max-width,
.stacks_in_1502.fdy-img source.img-max-width,
.stacks_in_1502.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}


.stacks_in_1502.fdy-img,
.stacks_in_1502.fdy-img source,
.stacks_in_1502.fdy-img img {
	max-width: 100%;
	width: 75px;
	height: auto
}

@media (min-width: 576px) {
	.stacks_in_1502.fdy-img,
	.stacks_in_1502.fdy-img source,
	.stacks_in_1502.fdy-img img {
		max-width: 100%;
		width: 75px;
		height: auto;
	}
}

@media (min-width: 768px) {
	.stacks_in_1502.fdy-img,
	.stacks_in_1502.fdy-img source,
	.stacks_in_1502.fdy-img img {
		max-width: 100%;
		width: 75px;
		height: auto;
	}
}

@media (min-width: 992px) {
	.stacks_in_1502.fdy-img,
	.stacks_in_1502.fdy-img source,
	.stacks_in_1502.fdy-img img {
		max-width: 100%;
		width: 100px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1502.fdy-img,
	.stacks_in_1502.fdy-img source,
	.stacks_in_1502.fdy-img img {
		max-width: 100%;
		width: 100px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1502.fdy-img,
	.stacks_in_1502.fdy-img source,
	.stacks_in_1502.fdy-img img {
		max-width: 100%;
		width: 100px;
		height: auto;
	}
}




	.col.stacks_in_1504-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




h3.stacks_in_1505-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_1505-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1505-header {
	margin-bottom: 0;
}






.stacks_in_1505-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_1505-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1505-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1505-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1505-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1505-header {
		font-size: 1.75rem;
	}
}



#stacks_in_1508-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1508-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1508-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1508-margins.padding-advanced {
	padding: 0.00rem 1.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
.moreish-stacks_in_2971 .read-more__btn.custom{padding:10px 10px;border-radius:2px;font-size:14px;color:rgba(255, 255, 255, 1.00);background-color:rgba(34, 34, 34, 1.00);}.moreish-stacks_in_2971 .read-more__footer{text-align:left}.moreish-stacks_in_2971 .moreish-link{color:rgba(13, 75, 161, 1.00);}.moreish-stacks_in_2971 .moreish-link:hover{color:rgba(137, 166, 208, 1.00);} .moreish-stacks_in_2971 .read-more__btn.custom:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(51, 51, 51, 1.00)}.moreish-stacks_in_2971 .read-more__footer{bottom:0;background-color:#F2F3F4} .moreish-stacks_in_2971 .read-more__footer:before{height:80px;top:-80px;background-image:linear-gradient(to bottom,rgba(255,255,255,0),#F2F3F4)} 


#stacks_in_2972-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2972-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2972-wrapper a,
#stacks_in_2972-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2972-wrapper a:hover,
#stacks_in_2972-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2972-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1513-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1513-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1513-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1513-margins.padding-advanced {
	padding: 0.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1514-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			
		
			
		
			 
			border-color: transparent !important;
			

			/* Rounded Corners */
			

}








#stacks_in_1516-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1516-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1516-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1516-margins.padding-advanced {
	padding: 1.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_1518-wrapper .col {
		
	}
	
}




	.col.stacks_in_1520-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




#stacks_in_1522-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1522-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1522-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1522-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




/* Base Margins */
.stacks_in_1524.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1524.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1524.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1524.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1524.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1524.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


.stacks_in_1524.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1524.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1524.fdy-img source.img-fluid-fdy,
.stacks_in_1524.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1524.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1524.fdy-img source.img-upscale,
.stacks_in_1524.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1524.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1524.fdy-img source.img-custom-pct,
.stacks_in_1524.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1524.fdy-img.img-max-width,
.stacks_in_1524.fdy-img source.img-max-width,
.stacks_in_1524.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}


.stacks_in_1524.fdy-img,
.stacks_in_1524.fdy-img source,
.stacks_in_1524.fdy-img img {
	max-width: 100%;
	width: 75px;
	height: auto
}

@media (min-width: 576px) {
	.stacks_in_1524.fdy-img,
	.stacks_in_1524.fdy-img source,
	.stacks_in_1524.fdy-img img {
		max-width: 100%;
		width: 75px;
		height: auto;
	}
}

@media (min-width: 768px) {
	.stacks_in_1524.fdy-img,
	.stacks_in_1524.fdy-img source,
	.stacks_in_1524.fdy-img img {
		max-width: 100%;
		width: 75px;
		height: auto;
	}
}

@media (min-width: 992px) {
	.stacks_in_1524.fdy-img,
	.stacks_in_1524.fdy-img source,
	.stacks_in_1524.fdy-img img {
		max-width: 100%;
		width: 90px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1524.fdy-img,
	.stacks_in_1524.fdy-img source,
	.stacks_in_1524.fdy-img img {
		max-width: 100%;
		width: 90px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1524.fdy-img,
	.stacks_in_1524.fdy-img source,
	.stacks_in_1524.fdy-img img {
		max-width: 100%;
		width: 90px;
		height: auto;
	}
}




	.col.stacks_in_1526-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




h3.stacks_in_1527-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_1527-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1527-header {
	margin-bottom: 0;
}






.stacks_in_1527-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_1527-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1527-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1527-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1527-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1527-header {
		font-size: 1.75rem;
	}
}



#stacks_in_1530-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1530-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1530-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1530-margins.padding-advanced {
	padding: 0.00rem 1.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
.moreish-stacks_in_2984 .read-more__btn.custom{padding:10px 10px;border-radius:2px;font-size:14px;color:rgba(255, 255, 255, 1.00);background-color:rgba(34, 34, 34, 1.00);}.moreish-stacks_in_2984 .read-more__footer{text-align:left}.moreish-stacks_in_2984 .moreish-link{color:rgba(13, 75, 161, 1.00);}.moreish-stacks_in_2984 .moreish-link:hover{color:rgba(137, 166, 208, 1.00);} .moreish-stacks_in_2984 .read-more__btn.custom:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(51, 51, 51, 1.00)}.moreish-stacks_in_2984 .read-more__footer{bottom:0;background-color:#F2F3F4} .moreish-stacks_in_2984 .read-more__footer:before{height:80px;top:-80px;background-image:linear-gradient(to bottom,rgba(255,255,255,0),#F2F3F4)} 


#stacks_in_2985-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2985-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2985-wrapper a,
#stacks_in_2985-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2985-wrapper a:hover,
#stacks_in_2985-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2985-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1535-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1535-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1535-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1535-margins.padding-advanced {
	padding: 0.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1536-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			
		
			
		
			 
			border-color: transparent !important;
			

			/* Rounded Corners */
			

}








#stacks_in_1538-margins.margins-easy-presets {
	/* Margin Settings */
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
}

#stacks_in_1538-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1538-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1538-margins.padding-advanced {
	padding: 1.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_1540-wrapper .col {
		
	}
	
}




	.col.stacks_in_1542-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




#stacks_in_1544-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1544-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1544-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1544-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




/* Base Margins */
.stacks_in_1546.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1546.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1546.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1546.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1546.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1546.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


.stacks_in_1546.fdy-img {
	overflow: hidden;
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
	
}


.stacks_in_1546.fdy.img-fluid-fdy {
	max-width: 100%;
	height: auto;
}

.stacks_in_1546.fdy-img source.img-fluid-fdy,
.stacks_in_1546.fdy-img img.img-fluid-fdy {
	width: 100%;
	height: auto;
}

.stacks_in_1546.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}

.stacks_in_1546.fdy-img source.img-upscale,
.stacks_in_1546.fdy-img img.img-upscale {
	width: 100%;
	height: auto;
}
	
.stacks_in_1546.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1546.fdy-img source.img-custom-pct,
.stacks_in_1546.fdy-img img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1546.fdy-img.img-max-width,
.stacks_in_1546.fdy-img source.img-max-width,
.stacks_in_1546.fdy-img img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}


.stacks_in_1546.fdy-img,
.stacks_in_1546.fdy-img source,
.stacks_in_1546.fdy-img img {
	max-width: 100%;
	width: 75px;
	height: auto
}

@media (min-width: 576px) {
	.stacks_in_1546.fdy-img,
	.stacks_in_1546.fdy-img source,
	.stacks_in_1546.fdy-img img {
		max-width: 100%;
		width: 75px;
		height: auto;
	}
}

@media (min-width: 768px) {
	.stacks_in_1546.fdy-img,
	.stacks_in_1546.fdy-img source,
	.stacks_in_1546.fdy-img img {
		max-width: 100%;
		width: 75px;
		height: auto;
	}
}

@media (min-width: 992px) {
	.stacks_in_1546.fdy-img,
	.stacks_in_1546.fdy-img source,
	.stacks_in_1546.fdy-img img {
		max-width: 100%;
		width: 90px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1546.fdy-img,
	.stacks_in_1546.fdy-img source,
	.stacks_in_1546.fdy-img img {
		max-width: 100%;
		width: 90px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1546.fdy-img,
	.stacks_in_1546.fdy-img source,
	.stacks_in_1546.fdy-img img {
		max-width: 100%;
		width: 90px;
		height: auto;
	}
}




	.col.stacks_in_1548-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




h3.stacks_in_1549-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_1549-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1549-header {
	margin-bottom: 0;
}






.stacks_in_1549-header {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	.stacks_in_1549-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1549-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1549-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1549-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1549-header {
		font-size: 1.75rem;
	}
}



#stacks_in_1552-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1552-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1552-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1552-margins.padding-advanced {
	padding: 0.00rem 1.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
.moreish-stacks_in_2988 .read-more__btn.custom{padding:10px 10px;border-radius:2px;font-size:14px;color:rgba(255, 255, 255, 1.00);background-color:rgba(34, 34, 34, 1.00);}.moreish-stacks_in_2988 .read-more__footer{text-align:left}.moreish-stacks_in_2988 .moreish-link{color:rgba(13, 75, 161, 1.00);}.moreish-stacks_in_2988 .moreish-link:hover{color:rgba(137, 166, 208, 1.00);} .moreish-stacks_in_2988 .read-more__btn.custom:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(51, 51, 51, 1.00)}.moreish-stacks_in_2988 .read-more__footer{bottom:0;background-color:#F2F3F4} .moreish-stacks_in_2988 .read-more__footer:before{height:80px;top:-80px;background-image:linear-gradient(to bottom,rgba(255,255,255,0),#F2F3F4)} 


#stacks_in_2989-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2989-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2989-wrapper a,
#stacks_in_2989-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2989-wrapper a:hover,
#stacks_in_2989-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2989-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_1634-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1634-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1634-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1634-margins.padding-advanced {
	padding: 0.00rem 0.00rem 5.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1634-margins.padding-advanced {
		padding: 0.00rem 0.00rem 8.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_1604-wrapper,
#stacks_in_1604-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1604-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	-webkit-backdrop-filter: blur(10px)   ;
	backdrop-filter: blur(10px)   ;
	
}

#stacks_in_1604-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1604-wrapper {
	background-position: center center;
}


#stacks_in_1604-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1604-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1604-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1604-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1604-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1604-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1604-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1604-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1604-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1604-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1604-wrapper.bkg-preset {
	background: var(--bs-gray-200);
}

#stacks_in_1604-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_1604-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_1604-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_1604-wrapper.custom-corners,
#stacks_in_1604-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1604-wrapper.custom-corners > .filters-layer {
	border-radius: 7px 7px 7px 7px;
}



#stacks_in_1604-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1604-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1604-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1604-wrapper {
	
	
	border-color: var(--bs-primary) !important;
	
	
	border-width: 7px !important;
	
	
}








	

	








#stacks_in_1605-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1605-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1605-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1605-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1605-margins.padding-advanced {
		padding: 2.00rem 9.00rem 2.00rem 9.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






#stacks_in_1558-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_1558-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_1558-wrapper a,
#stacks_in_1558-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_1558-wrapper a:hover,
#stacks_in_1558-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_1558-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_2676-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2676-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2676-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2676-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_2676-margins.padding-advanced {
		padding: 0.00rem 1.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1609-wrapper .badge {
	
	font-weight: 700;
	
}

#stacks_in_1609-wrapper .badge.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_1609-wrapper .badge {
	
	background: var(--bs-primary);
	
	
	

	
	
	color: rgba(255, 255, 255, 1.00);
}


/* Base Margins */
#stacks_in_1609-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1609-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1609-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1609-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1609-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1609-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8934-container {
	
	
	

	
	
	

}












#stacks_in_1641-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1641-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1641-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1641-margins.padding-advanced {
	padding: 5.00rem 0.00rem 5.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1641-margins.padding-advanced {
		padding: 10.00rem 0.00rem 10.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_560-wrapper {
	
}

#stacks_in_560-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_560-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_560-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_560-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_560-wrapper.fdy-container {
	max-width: 960px;
  }
}








h3.stacks_in_562-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_562-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_562-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_562-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_562-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_562-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_562-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_562-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_562-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_562-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_562-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_562-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_562-header {
		font-size: 4.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_562-header {
		font-size: 4.00rem;
	}
}



#stacks_in_565-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_565-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_565-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_565-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_565-margins.padding-advanced {
		padding: 0.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_565-margins.padding-advanced {
		padding: 0.00rem 10.00rem 0.00rem 10.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_566-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_566-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_566-wrapper a,
#stacks_in_566-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_566-wrapper a:hover,
#stacks_in_566-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_566-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_569-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_569-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_569-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_569-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_570-wrapper .col {
		
	}
	
}





#stacks_in_574-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_574-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_574-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_574-margins.padding-advanced {
	padding: 2.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_574-margins.padding-advanced {
		padding: 4.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_576.blu-svg{text-align:center}#stacks_in_576.blu-svg svg{width:45.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_576.blu-svg{text-align:center}#stacks_in_576.blu-svg svg{width:76.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_576.blu-svg{text-align:center}#stacks_in_576.blu-svg svg{width:96.00px}}@media screen and (min-width:1000px){#stacks_in_576.blu-svg{text-align:center}#stacks_in_576.blu-svg svg{width:96.00px}}  #stacks_in_576.blu-svg svg rectange,#stacks_in_576.blu-svg svg circle,#stacks_in_576.blu-svg svg ellipse,#stacks_in_576.blu-svg svg polygon,#stacks_in_576.blu-svg svg polyline,#stacks_in_576.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_576.blu-svg svg:hover rectange,#stacks_in_576.blu-svg svg:hover circle,#stacks_in_576.blu-svg svg:hover ellipse,#stacks_in_576.blu-svg svg:hover polygon,#stacks_in_576.blu-svg svg:hover polyline,#stacks_in_576.blu-svg svg:hover path{fill:rgba(75, 126, 37, 1.00)!important} #stacks_in_576.blu-svg{float:none}#stacks_in_576 a,#stacks_in_576 svg{cursor:auto}



#stacks_in_579-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_579-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_579-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_579-margins.padding-advanced {
	padding: 1.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_579-margins.padding-advanced {
		padding: 2.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_579-margins.padding-advanced {
		padding: 2.00rem 4.00rem 0.00rem 4.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_580-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_580-header > small {
	
	font-weight: 700;
	
	
	
	
	
	color: rgba(55, 58, 60, 1.00);
	
	
	
	
	

}



/* Base Margins */
h4.stacks_in_580-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h4.stacks_in_580-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h4.stacks_in_580-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h4.stacks_in_580-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h4.stacks_in_580-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h4.stacks_in_580-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_580-header {
	font-size: 1.05rem;
}

@media (min-width: 576px) {
	.stacks_in_580-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_580-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_580-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_580-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_580-header {
		font-size: 2.00rem;
	}
}
.moreish-stacks_in_2874 .read-more__btn.custom{padding:10px 10px;border-radius:2px;font-size:14px;color:rgba(255, 255, 255, 1.00);background-color:rgba(34, 34, 34, 1.00);}.moreish-stacks_in_2874 .read-more__footer{text-align:left}.moreish-stacks_in_2874 .moreish-link{color:rgba(13, 75, 161, 1.00);}.moreish-stacks_in_2874 .moreish-link:hover{color:rgba(137, 166, 208, 1.00);} .moreish-stacks_in_2874 .read-more__btn.custom:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(51, 51, 51, 1.00)}.moreish-stacks_in_2874 .read-more__footer{bottom:0;background-color:white} .moreish-stacks_in_2874 .read-more__footer:before{height:80px;top:-80px;background-image:linear-gradient(to bottom,rgba(255,255,255,0),white)} 


#stacks_in_2875-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2875-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2875-wrapper a,
#stacks_in_2875-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2875-wrapper a:hover,
#stacks_in_2875-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2875-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_588-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_588-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_588-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_588-margins.padding-advanced {
	padding: 2.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_588-margins.padding-advanced {
		padding: 3.00rem 0.00rem 0.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_590.blu-svg{text-align:center}#stacks_in_590.blu-svg svg{width:36.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_590.blu-svg{text-align:center}#stacks_in_590.blu-svg svg{width:56.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_590.blu-svg{text-align:center}#stacks_in_590.blu-svg svg{width:90.00px}}@media screen and (min-width:1000px){#stacks_in_590.blu-svg{text-align:center}#stacks_in_590.blu-svg svg{width:96.00px}}  #stacks_in_590.blu-svg svg rectange,#stacks_in_590.blu-svg svg circle,#stacks_in_590.blu-svg svg ellipse,#stacks_in_590.blu-svg svg polygon,#stacks_in_590.blu-svg svg polyline,#stacks_in_590.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_590.blu-svg svg:hover rectange,#stacks_in_590.blu-svg svg:hover circle,#stacks_in_590.blu-svg svg:hover ellipse,#stacks_in_590.blu-svg svg:hover polygon,#stacks_in_590.blu-svg svg:hover polyline,#stacks_in_590.blu-svg svg:hover path{fill:rgba(251, 0, 7, 1.00)!important} #stacks_in_590.blu-svg{float:none}#stacks_in_590 a,#stacks_in_590 svg{cursor:auto}



#stacks_in_593-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_593-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_593-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_593-margins.padding-advanced {
	padding: 1.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_593-margins.padding-advanced {
		padding: 2.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_593-margins.padding-advanced {
		padding: 2.00rem 4.00rem 0.00rem 4.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_594-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_594-header > small {
	
	font-weight: 700;
	
	
	
	
	
	color: rgba(55, 58, 60, 1.00);
	
	
	
	
	

}



/* Base Margins */
h4.stacks_in_594-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h4.stacks_in_594-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h4.stacks_in_594-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h4.stacks_in_594-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h4.stacks_in_594-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h4.stacks_in_594-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_594-header {
	font-size: 1.05rem;
}

@media (min-width: 576px) {
	.stacks_in_594-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_594-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_594-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_594-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_594-header {
		font-size: 2.00rem;
	}
}
.moreish-stacks_in_2864 .read-more__btn.custom{padding:10px 10px;border-radius:2px;font-size:14px;color:rgba(255, 255, 255, 1.00);background-color:rgba(34, 34, 34, 1.00);}.moreish-stacks_in_2864 .read-more__footer{text-align:left}.moreish-stacks_in_2864 .moreish-link{color:rgba(13, 75, 161, 1.00);}.moreish-stacks_in_2864 .moreish-link:hover{color:rgba(137, 166, 208, 1.00);} .moreish-stacks_in_2864 .read-more__btn.custom:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(51, 51, 51, 1.00)}.moreish-stacks_in_2864 .read-more__footer{bottom:0;background-color:white} .moreish-stacks_in_2864 .read-more__footer:before{height:80px;top:-80px;background-image:linear-gradient(to bottom,rgba(255,255,255,0),white)} 


#stacks_in_2865-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2865-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2865-wrapper a,
#stacks_in_2865-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2865-wrapper a:hover,
#stacks_in_2865-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2865-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_602-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_602-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_602-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_602-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_604.blu-svg{text-align:center}#stacks_in_604.blu-svg svg{width:45.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_604.blu-svg{text-align:center}#stacks_in_604.blu-svg svg{width:76.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_604.blu-svg{text-align:center}#stacks_in_604.blu-svg svg{width:96.00px}}@media screen and (min-width:1000px){#stacks_in_604.blu-svg{text-align:center}#stacks_in_604.blu-svg svg{width:96.00px}}  #stacks_in_604.blu-svg svg rectange,#stacks_in_604.blu-svg svg circle,#stacks_in_604.blu-svg svg ellipse,#stacks_in_604.blu-svg svg polygon,#stacks_in_604.blu-svg svg polyline,#stacks_in_604.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_604.blu-svg svg:hover rectange,#stacks_in_604.blu-svg svg:hover circle,#stacks_in_604.blu-svg svg:hover ellipse,#stacks_in_604.blu-svg svg:hover polygon,#stacks_in_604.blu-svg svg:hover polyline,#stacks_in_604.blu-svg svg:hover path{fill:rgba(32, 37, 41, 1.00)!important} #stacks_in_604.blu-svg{float:none}#stacks_in_604 a,#stacks_in_604 svg{cursor:auto}



#stacks_in_607-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_607-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_607-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_607-margins.padding-advanced {
	padding: 1.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_607-margins.padding-advanced {
		padding: 2.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_607-margins.padding-advanced {
		padding: 2.00rem 4.00rem 0.00rem 4.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_608-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_608-header > small {
	
	font-weight: 700;
	
	
	
	
	
	color: rgba(55, 58, 60, 1.00);
	
	
	
	
	

}



/* Base Margins */
h4.stacks_in_608-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h4.stacks_in_608-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h4.stacks_in_608-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h4.stacks_in_608-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h4.stacks_in_608-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h4.stacks_in_608-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_608-header {
	font-size: 1.05rem;
}

@media (min-width: 576px) {
	.stacks_in_608-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_608-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_608-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_608-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_608-header {
		font-size: 2.00rem;
	}
}
.moreish-stacks_in_2854 .read-more__btn.custom{padding:10px 10px;border-radius:2px;font-size:14px;color:rgba(255, 255, 255, 1.00);background-color:rgba(34, 34, 34, 1.00);}.moreish-stacks_in_2854 .read-more__footer{text-align:left}.moreish-stacks_in_2854 .moreish-link{color:rgba(13, 75, 161, 1.00);}.moreish-stacks_in_2854 .moreish-link:hover{color:rgba(137, 166, 208, 1.00);} .moreish-stacks_in_2854 .read-more__btn.custom:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(51, 51, 51, 1.00)}.moreish-stacks_in_2854 .read-more__footer{bottom:0;background-color:white} .moreish-stacks_in_2854 .read-more__footer:before{height:80px;top:-80px;background-image:linear-gradient(to bottom,rgba(255,255,255,0),white)} 


#stacks_in_2856-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2856-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2856-wrapper a,
#stacks_in_2856-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2856-wrapper a:hover,
#stacks_in_2856-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2856-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_616-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_616-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_616-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_616-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_618.blu-svg{text-align:center}#stacks_in_618.blu-svg svg{width:45.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_618.blu-svg{text-align:center}#stacks_in_618.blu-svg svg{width:76.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_618.blu-svg{text-align:center}#stacks_in_618.blu-svg svg{width:96.00px}}@media screen and (min-width:1000px){#stacks_in_618.blu-svg{text-align:center}#stacks_in_618.blu-svg svg{width:96.00px}}  #stacks_in_618.blu-svg svg rectange,#stacks_in_618.blu-svg svg circle,#stacks_in_618.blu-svg svg ellipse,#stacks_in_618.blu-svg svg polygon,#stacks_in_618.blu-svg svg polyline,#stacks_in_618.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_618.blu-svg svg:hover rectange,#stacks_in_618.blu-svg svg:hover circle,#stacks_in_618.blu-svg svg:hover ellipse,#stacks_in_618.blu-svg svg:hover polygon,#stacks_in_618.blu-svg svg:hover polyline,#stacks_in_618.blu-svg svg:hover path{fill:rgba(115, 72, 47, 1.00)!important} #stacks_in_618.blu-svg{float:none}#stacks_in_618 a,#stacks_in_618 svg{cursor:auto}



#stacks_in_621-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_621-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_621-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_621-margins.padding-advanced {
	padding: 1.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_621-margins.padding-advanced {
		padding: 2.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_621-margins.padding-advanced {
		padding: 2.00rem 4.00rem 0.00rem 4.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_622-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_622-header > small {
	
	font-weight: 700;
	
	
	
	
	
	color: rgba(55, 58, 60, 1.00);
	
	
	
	
	

}



/* Base Margins */
h4.stacks_in_622-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h4.stacks_in_622-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h4.stacks_in_622-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h4.stacks_in_622-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h4.stacks_in_622-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h4.stacks_in_622-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_622-header {
	font-size: 1.05rem;
}

@media (min-width: 576px) {
	.stacks_in_622-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_622-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_622-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_622-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_622-header {
		font-size: 2.00rem;
	}
}
.moreish-stacks_in_2840 .read-more__btn.custom{padding:10px 10px;border-radius:2px;font-size:14px;color:rgba(255, 255, 255, 1.00);background-color:rgba(34, 34, 34, 1.00);}.moreish-stacks_in_2840 .read-more__footer{text-align:left}.moreish-stacks_in_2840 .moreish-link{color:rgba(13, 75, 161, 1.00);}.moreish-stacks_in_2840 .moreish-link:hover{color:rgba(137, 166, 208, 1.00);} .moreish-stacks_in_2840 .read-more__btn.custom:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(51, 51, 51, 1.00)}.moreish-stacks_in_2840 .read-more__footer{bottom:0;background-color:white} .moreish-stacks_in_2840 .read-more__footer:before{height:80px;top:-80px;background-image:linear-gradient(to bottom,rgba(255,255,255,0),white)} 


#stacks_in_2842-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2842-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2842-wrapper a,
#stacks_in_2842-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2842-wrapper a:hover,
#stacks_in_2842-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2842-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_630-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_630-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_630-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_630-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_630-margins.padding-advanced {
		padding: 2.00rem 4.00rem 0.00rem 4.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_632.blu-svg{text-align:center}#stacks_in_632.blu-svg svg{width:45.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_632.blu-svg{text-align:center}#stacks_in_632.blu-svg svg{width:66.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_632.blu-svg{text-align:center}#stacks_in_632.blu-svg svg{width:96.00px}}@media screen and (min-width:1000px){#stacks_in_632.blu-svg{text-align:center}#stacks_in_632.blu-svg svg{width:96.00px}}  #stacks_in_632.blu-svg svg rectange,#stacks_in_632.blu-svg svg circle,#stacks_in_632.blu-svg svg ellipse,#stacks_in_632.blu-svg svg polygon,#stacks_in_632.blu-svg svg polyline,#stacks_in_632.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_632.blu-svg svg:hover rectange,#stacks_in_632.blu-svg svg:hover circle,#stacks_in_632.blu-svg svg:hover ellipse,#stacks_in_632.blu-svg svg:hover polygon,#stacks_in_632.blu-svg svg:hover polyline,#stacks_in_632.blu-svg svg:hover path{fill:rgba(203, 67, 25, 1.00)!important} #stacks_in_632.blu-svg{float:none}#stacks_in_632 a,#stacks_in_632 svg{cursor:auto}



#stacks_in_635-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_635-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_635-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_635-margins.padding-advanced {
	padding: 1.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_635-margins.padding-advanced {
		padding: 2.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_636-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_636-header > small {
	
	font-weight: 700;
	
	
	
	
	
	color: rgba(55, 58, 60, 1.00);
	
	
	
	
	

}



/* Base Margins */
h4.stacks_in_636-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h4.stacks_in_636-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h4.stacks_in_636-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h4.stacks_in_636-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h4.stacks_in_636-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h4.stacks_in_636-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_636-header {
	font-size: 1.05rem;
}

@media (min-width: 576px) {
	.stacks_in_636-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_636-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_636-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_636-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_636-header {
		font-size: 2.00rem;
	}
}
.moreish-stacks_in_2848 .read-more__btn.custom{padding:10px 10px;border-radius:2px;font-size:14px;color:rgba(255, 255, 255, 1.00);background-color:rgba(34, 34, 34, 1.00);}.moreish-stacks_in_2848 .read-more__footer{text-align:left}.moreish-stacks_in_2848 .moreish-link{color:rgba(13, 75, 161, 1.00);}.moreish-stacks_in_2848 .moreish-link:hover{color:rgba(137, 166, 208, 1.00);} .moreish-stacks_in_2848 .read-more__btn.custom:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(51, 51, 51, 1.00)}.moreish-stacks_in_2848 .read-more__footer{bottom:0;background-color:white} .moreish-stacks_in_2848 .read-more__footer:before{height:80px;top:-80px;background-image:linear-gradient(to bottom,rgba(255,255,255,0),white)} 


#stacks_in_2849-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2849-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2849-wrapper a,
#stacks_in_2849-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2849-wrapper a:hover,
#stacks_in_2849-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2849-wrapper p:last-of-type {
		margin-bottom: 0;
	}





.stacks_in_8937-container {
	
	
	

	
	
	

}








#stacks_in_1644-wrapper,
#stacks_in_1644-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1644-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1644-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1644-wrapper {
	background-position: center center;
}


#stacks_in_1644-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1644-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1644-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1644-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1644-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1644-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1644-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1644-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1644-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1644-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1644-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_1644-wrapper.bkg-solid-color {
	background: rgba(12, 97, 176, 0.25);
}

#stacks_in_1644-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_1644-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_1644-wrapper.custom-corners,
#stacks_in_1644-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1644-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1644-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1644-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1644-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1644-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1646-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1646-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1646-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1646-margins.padding-advanced {
	padding: 3.00rem 0.00rem 5.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1646-margins.padding-advanced {
		padding: 5.00rem 0.00rem 7.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






#stacks_in_651-wrapper {
	
}

#stacks_in_651-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_651-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_651-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_651-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_651-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_653-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_653-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_653-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_653-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_5313-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-secondary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_5313-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_5313-header {
	margin-bottom: 0;
}






.stacks_in_5313-header {
	font-size: 1.70rem;
}

@media (min-width: 576px) {
	.stacks_in_5313-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_5313-header {
		font-size: 2.85rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_5313-header {
		font-size: 2.85rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_5313-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_5313-header {
		font-size: 4.00rem;
	}
}



#stacks_in_658-wrapper .badge {
	
	font-weight: 700;
	
}

#stacks_in_658-wrapper .badge.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_658-wrapper .badge {
	
	background: var(--bs-primary);
	
	
	

	
	
	color: rgba(255, 255, 255, 1.00);
}




#stacks_in_660-wrapper {
	
}

#stacks_in_660-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_660-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_660-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_660-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_660-wrapper.fdy-container {
	max-width: 960px;
  }
}











@media (max-width: 575px) {
	
}





#stacks_in_666-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_666-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_666-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_666-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_666-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_668-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_668-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_668-header {
	margin-bottom: 0;
}






.stacks_in_668-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_668-header {
		font-size: 1.80rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_668-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_668-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_668-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_668-header {
		font-size: 3.00rem;
	}
}


#stacks_out_672 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_672 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_672 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_672 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_672 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_672 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_672 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}


 

#stacks_in_674-wrapper.card {
	background: transparent !important;
	overflow: hidden !important;
}

#stacks_in_674-wrapper .card-header {
	
	background-color: var(--bs-white);
	
	
}

#stacks_in_674-wrapper.custom-radius,
#stacks_in_674-wrapper .card-body.custom-radius {
	border-radius: 13px 13px 13px 13px;
}

#stacks_in_674-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_674-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_674-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_674-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_674-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_674-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 13px !important;
	border-bottom-right-radius: 13px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_674-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_674-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_674-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_674-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_674-wrapper .card-header h1,
#stacks_in_674-wrapper .card-header h2,
#stacks_in_674-wrapper .card-header h3,
#stacks_in_674-wrapper .card-header h4,
#stacks_in_674-wrapper .card-header h5,
#stacks_in_674-wrapper .card-header h6,
#stacks_in_674-wrapper .card-header p:last-of-type,
#stacks_in_674-wrapper .card-header small,
#stacks_in_674-wrapper .card-footer h1,
#stacks_in_674-wrapper .card-footer h2,
#stacks_in_674-wrapper .card-footer h3,
#stacks_in_674-wrapper .card-footer h4,
#stacks_in_674-wrapper .card-footer h5,
#stacks_in_674-wrapper .card-footer h6,
#stacks_in_674-wrapper .card-footer p:last-of-type,
#stacks_in_674-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_674-wrapper.card {
	
	border-color: var(--bs-primary) !important;
	
	
}

#stacks_in_674-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_674-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_674-wrapper.card,
#stacks_in_674-wrapper.card.custom-shadow,
#stacks_in_674-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_674-wrapper > .card-body.custom-padding {
	padding: 0.90rem;
}

#stacks_in_674-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_674-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_674-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_674-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_674-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_674-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_674-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_674-wrapper img {
 	margin: 0 !important;
 }
 


#stacks_in_676-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_676-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_676-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_676-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_678.blu-svg{text-align:center}#stacks_in_678.blu-svg svg{width:75.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_678.blu-svg{text-align:center}#stacks_in_678.blu-svg svg{width:75.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_678.blu-svg{text-align:center}#stacks_in_678.blu-svg svg{width:86.00px}}@media screen and (min-width:1000px){#stacks_in_678.blu-svg{text-align:center}#stacks_in_678.blu-svg svg{width:96.00px}}  #stacks_in_678.blu-svg svg rectange,#stacks_in_678.blu-svg svg circle,#stacks_in_678.blu-svg svg ellipse,#stacks_in_678.blu-svg svg polygon,#stacks_in_678.blu-svg svg polyline,#stacks_in_678.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_678.blu-svg svg:hover rectange,#stacks_in_678.blu-svg svg:hover circle,#stacks_in_678.blu-svg svg:hover ellipse,#stacks_in_678.blu-svg svg:hover polygon,#stacks_in_678.blu-svg svg:hover polyline,#stacks_in_678.blu-svg svg:hover path{fill:rgba(13, 75, 161, 1.00)!important} #stacks_in_678.blu-svg{float:none}#stacks_in_678 a,#stacks_in_678 svg{cursor:auto}



#stacks_in_710-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_710-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_710-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_710-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_712-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_712-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_712-header {
	margin-bottom: 0;
}






.stacks_in_712-header {
	font-size: 2.30rem;
}

@media (min-width: 576px) {
	.stacks_in_712-header {
		font-size: 2.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_712-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_712-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_712-header {
		font-size: 1.85rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_712-header {
		font-size: 1.85rem;
	}
}




/* Base Margins */
.stacks_in_975.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_975.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_975.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_975.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_975.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_975.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_975.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_975.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_975.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_975.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_689-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_689-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_689-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_689-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_690-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-secondary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_690-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_690-header {
	margin-bottom: 0;
}






.stacks_in_690-header {
	font-size: 3.00rem;
}

@media (min-width: 576px) {
	.stacks_in_690-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_690-header {
		font-size: 1.90rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_690-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_690-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_690-header {
		font-size: 2.00rem;
	}
}



#stacks_in_693-wrapper .badge {
	
	font-weight: 700;
	
}

#stacks_in_693-wrapper .badge.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_693-wrapper .badge {
	
	background: var(--bs-primary);
	
	
	

	
	
	color: rgba(255, 255, 255, 1.00);
}


/* Base Margins */
#stacks_in_693-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_693-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_693-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_693-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_693-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_693-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_694-wrapper {
	
	font-weight: 400;
	
	
	
}

#stacks_in_694-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_694-wrapper {
	
	
	
	color: var(--bs-danger);
	
}



/* Base Margins */
#stacks_in_694-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_694-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_694-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_694-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_694-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_694-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}
#stacks_out_696 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_696 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_696 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_696 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_696 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_696 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_696 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (my-unique-id)";
	text-transform: capitalize;
}





#stacks_in_681-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_681-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_681-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_681-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_682-wrapper,
#stacks_in_682-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_682-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_682-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_682-wrapper {
	background-position: center center;
}


#stacks_in_682-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_682-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_682-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_682-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_682-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_682-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_682-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_682-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_682-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_682-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_682-wrapper.bkg-preset {
	background: var(--bs-primary);
}

#stacks_in_682-wrapper.bkg-solid-color {
	background: rgba(193, 132, 78, 1.00);
}

#stacks_in_682-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_682-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_682-wrapper.custom-corners,
#stacks_in_682-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_682-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_682-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_682-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_682-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_682-wrapper {
	
	
	border-color: var(--bs-primary) !important;
	
	
	
}








	

	





#stacks_out_5359 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_5359 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_5359 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_5359 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_5359 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_5359 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_5359 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (inside)";
	text-transform: capitalize;
}





#stacks_in_5325-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5325-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5325-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5325-margins.padding-advanced {
	padding: 1.00rem 0.25rem 1.00rem 0.25rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_5326-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.20rem;
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_5326-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_5326-header {
	margin-bottom: 0;
}








#stacks_in_5329-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5329-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5329-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5329-margins.padding-advanced {
	padding: 1.00rem 0.50rem 1.00rem 0.50rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_5329-margins.padding-advanced {
		padding: 1.00rem 0.50rem 1.00rem 0.50rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_5329-margins.padding-advanced {
		padding: 1.00rem 0.50rem 1.00rem 0.50rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_707-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_707-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_981-wrapper {
	
	
	
}

#stacks_in_981-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_981-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_981-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_981-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_981-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_981-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_981-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_981-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_715-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_715-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_715-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_715-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_715-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_715-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_716-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_716-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_716-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_716-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_718-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_718-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_718-header {
	margin-bottom: 0;
}






.stacks_in_718-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_718-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_718-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_718-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_718-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_718-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_721 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_721 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_721 body {
    margin: 0; }
  #listify_stacks_in_721 article, #listify_stacks_in_721 aside, #listify_stacks_in_721 details, #listify_stacks_in_721 figcaption, #listify_stacks_in_721 figure, #listify_stacks_in_721 footer, #listify_stacks_in_721 header, #listify_stacks_in_721 hgroup, #listify_stacks_in_721 main, #listify_stacks_in_721 menu, #listify_stacks_in_721 nav, #listify_stacks_in_721 section, #listify_stacks_in_721 summary {
    display: block; }
  #listify_stacks_in_721 audio, #listify_stacks_in_721 canvas, #listify_stacks_in_721 progress, #listify_stacks_in_721 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_721 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_721 [hidden], #listify_stacks_in_721 template {
    display: none; }
  #listify_stacks_in_721 a {
    background-color: transparent; }
    #listify_stacks_in_721 a:active, #listify_stacks_in_721 a:hover {
      outline: 0; }
  #listify_stacks_in_721 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_721 b, #listify_stacks_in_721 strong {
    font-weight: bold; }
  #listify_stacks_in_721 dfn {
    font-style: italic; }
  #listify_stacks_in_721 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_721 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_721 small {
    font-size: 80%; }
  #listify_stacks_in_721 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_721 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_721 sub {
    bottom: -0.25em; }
  #listify_stacks_in_721 img {
    border: 0; }
  #listify_stacks_in_721 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_721 figure {
    margin: 1em 40px; }
  #listify_stacks_in_721 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_721 pre {
    overflow: auto; }
  #listify_stacks_in_721 code, #listify_stacks_in_721 kbd, #listify_stacks_in_721 pre, #listify_stacks_in_721 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_721 button, #listify_stacks_in_721 input, #listify_stacks_in_721 optgroup, #listify_stacks_in_721 select, #listify_stacks_in_721 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_721 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_721 select {
    text-transform: none; }
  #listify_stacks_in_721 button, #listify_stacks_in_721 html input[type="button"], #listify_stacks_in_721 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_721 button[disabled], #listify_stacks_in_721 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_721 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_721 input {
    line-height: normal; }
    #listify_stacks_in_721 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_721 input[type="checkbox"], #listify_stacks_in_721 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_721 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_721 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_721 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_721 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_721 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_721 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_721 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_721 textarea {
    overflow: auto; }
  #listify_stacks_in_721 optgroup {
    font-weight: bold; }
  #listify_stacks_in_721 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_721 td, #listify_stacks_in_721 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_721 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_721 [class^="w-icon-"], #listify_stacks_in_721 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_721 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_721 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_721 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_721 .w-icon-arrow-down:before, #listify_stacks_in_721 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_721 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_721 html {
    height: 100%; }
  #listify_stacks_in_721 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_721 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_721 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_721 .w-block {
    display: block; }
  #listify_stacks_in_721 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_721 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_721 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_721 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_721 .w-hidden {
    display: none; }
  #listify_stacks_in_721 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_721 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_721 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_721 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_721 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_721 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_721 h1, #listify_stacks_in_721 h2, #listify_stacks_in_721 h3, #listify_stacks_in_721 h4, #listify_stacks_in_721 h5, #listify_stacks_in_721 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_721 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_721 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_721 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_721 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_721 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_721 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_721 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_721 a:focus {
    outline: 0; }
  #listify_stacks_in_721 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_721 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_721 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_721 ul, #listify_stacks_in_721 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_721 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_721 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_721 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_721 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_721 .w-video iframe, #listify_stacks_in_721 .w-video object, #listify_stacks_in_721 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_721 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_721 button, #listify_stacks_in_721 html input[type="button"], #listify_stacks_in_721 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_721 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_721 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_721 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_721 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_721 .w-input, #listify_stacks_in_721 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_721 .w-input:-moz-placeholder, #listify_stacks_in_721 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_721 .w-input::-moz-placeholder, #listify_stacks_in_721 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_721 .w-input:-ms-input-placeholder, #listify_stacks_in_721 .w-select:-ms-input-placeholder, #listify_stacks_in_721 .w-input::-webkit-input-placeholder, #listify_stacks_in_721 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_721 .w-input:focus, #listify_stacks_in_721 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_721 .w-input[disabled], #listify_stacks_in_721 .w-select[disabled], #listify_stacks_in_721 .w-input[readonly], #listify_stacks_in_721 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_721 fieldset[disabled] .w-input, #listify_stacks_in_721 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_721 textarea.w-input, #listify_stacks_in_721 textarea.w-select {
    height: auto; }
  #listify_stacks_in_721 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_721 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_721 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_721 .w-checkbox, #listify_stacks_in_721 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_721 .w-checkbox:before, #listify_stacks_in_721 .w-radio:before, #listify_stacks_in_721 .w-checkbox:after, #listify_stacks_in_721 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_721 .w-checkbox:after, #listify_stacks_in_721 .w-radio:after {
    clear: both; }
  #listify_stacks_in_721 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_721 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_721 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_721 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_721 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_721 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_721 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_721 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_721 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_721 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_721 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_721 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_721 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_721 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_721 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_721 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_721 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_721 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_721 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_721 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_721 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_721 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_721 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_721 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_721 .w-container {
      max-width: 728px; }
    #listify_stacks_in_721 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_721 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_721 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_721 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_721 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_721 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_721 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_721 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_721 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_721 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_721 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_721 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_721 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_721 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_721 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_721 .w-hidden-main, #listify_stacks_in_721 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_721 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_721 .w-row, #listify_stacks_in_721 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_721 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_721 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_721 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_721 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_721 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_721 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_721 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_721 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_721 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_721 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_721 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_721 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_721 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_721 .w-container {
      max-width: none; }
    #listify_stacks_in_721 .w-hidden-main, #listify_stacks_in_721 .w-hidden-medium, #listify_stacks_in_721 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_721 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_721 .w-col {
      width: 100%; }
    #listify_stacks_in_721 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_721 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_721 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_721 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_721 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_721 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_721 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_721 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_721 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_721 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_721 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_721 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_721 .w-widget {
    position: relative; }
  #listify_stacks_in_721 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_721 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_721 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_721 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_721 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_721 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_721 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_721 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_721 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_721 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_721 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_721 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_721 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_721 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_721 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_721 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_721 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_721 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_721 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_721 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_721 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_721 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_721 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_721 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_721 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_721 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_721 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_721 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_721 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_721 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_721 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_721 .w-slider-arrow-left, #listify_stacks_in_721 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_721 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_721 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_721 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_721 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_721 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_721 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_721 .w-icon-slider-left, #listify_stacks_in_721 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_721 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_721 .w-dropdown-btn, #listify_stacks_in_721 .w-dropdown-toggle, #listify_stacks_in_721 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_721 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_721 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_721 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_721 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_721 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_721 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_721 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_721 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_721 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_721 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_721 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_721 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_721 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_721 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_721 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_721 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_721 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_721 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_721 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_721 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_721 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_721 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_721 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_721 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_721 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_721 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_721 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_721 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_721 .w-lightbox-frame, #listify_stacks_in_721 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_721 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_721 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_721 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_721 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_721 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_721 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_721 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_721 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_721 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_721 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_721 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_721 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_721 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_721 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_721 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_721 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_721 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_721 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_721 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_721 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_721 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_721 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_721 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_721 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_721 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_721 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_721 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_721 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_721 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_721 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_721 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_721 .w-lightbox-left, #listify_stacks_in_721 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_721 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_721 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_721 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_721 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_721 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_721 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_721 .w-richtext ol, #listify_stacks_in_721 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_721 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_721 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_721 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_721 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_721 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_721 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_721 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_721 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_721 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_721 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_721 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_721 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_721 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_721 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_721 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_721 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_721 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_721 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_721 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_721 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_721 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_721 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_721 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_721 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_721 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_721 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_721 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_721 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_721 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_721 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_721 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_721 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_721 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_721 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_721 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_721 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_721 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_721 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_721 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_721 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_721 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_721 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_721 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_721 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_721 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_721 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_721 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_721 .w-tabs {
    position: relative; }
    #listify_stacks_in_721 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_721 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_721 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_721 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_721 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_721 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_721 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_721 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_721 .w-tab-link {
      display: block; } }
  #listify_stacks_in_721 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_721 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_721 .w-dyn-bind-empty, #listify_stacks_in_721 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_721 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_721 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_721 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_721 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_721 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_721 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_721 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_721 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_721 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_721 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_721 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_721 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_721 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_721 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_721 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_721 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_721 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_721 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_721 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_721 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_721 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_721.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_721.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_721.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_722.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_722.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_722.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_722.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_722.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_722.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_722.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_722.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_722.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_722.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_722.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_722.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_724.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_724.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_724.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_724.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_724.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_724.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_724.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_724.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_724.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_724.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_724.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_724.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_726.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_726.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_726.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_726.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_726.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_726.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_726.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_726.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_726.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_726.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_726.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_726.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_728.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_728.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_728.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_728.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_728.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_728.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_728.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_728.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_728.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_728.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_728.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_728.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_730.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_730.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_730.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_730.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_730.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_730.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_730.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_730.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_730.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_730.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_730.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_730.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_732.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_732.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_732.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_732.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_732.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_732.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_732.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_732.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_732.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_732.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_732.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_732.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_734.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_734.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_734.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_734.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_734.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_734.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_734.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_734.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_734.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_734.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_734.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_734.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_736.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_736.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_736.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_736.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_736.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_736.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_736.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_736.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_736.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_736.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_736.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_736.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_738.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_738.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_738.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_738.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_738.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_738.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_738.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_738.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_738.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_738.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_738.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_738.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_740.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_740.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_740.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_740.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_740.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_740.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_740.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_740.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_740.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_740.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_740.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_740.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_742.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_742.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_742.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_742.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_742.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_742.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_742.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_742.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_742.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_742.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_742.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_742.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_744.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_744.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_744.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_744.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_744.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_744.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_744.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_744.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_744.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_744.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_744.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_744.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_746.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_746.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_746.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_746.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_746.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_746.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_746.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_746.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_746.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_746.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_746.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_746.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_748.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_748.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_748.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_748.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_748.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_748.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_748.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_748.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 11px;
    line-height: 17px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_748.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_748.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_748.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_748.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_750.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_750.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_750.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_750.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_750.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_750.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_750.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_750.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_750.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_750.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_750.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_750.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_752.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_752.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_752.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_752.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_752.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_752.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_752.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_752.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_752.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_752.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_752.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_752.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_754.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_754.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_754.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_754.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_754.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_754.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_754.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_754.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_754.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_754.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_754.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_754.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_756.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_756.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_756.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_756.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_756.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_756.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_756.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_756.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_756.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_756.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_756.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_756.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_758.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_758.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_758.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_758.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_758.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_758.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_758.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_758.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_758.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_758.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_758.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_758.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_760.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_760.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_760.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_760.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_760.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_760.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_760.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_760.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_760.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_760.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_760.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_760.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_762.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_762.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_762.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_762.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_762.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_762.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_762.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_762.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_762.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_762.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_762.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_762.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_764.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_764.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_764.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_764.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_764.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_764.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_764.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_764.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_764.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_764.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_764.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_764.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_766.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_766.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_766.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_766.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_766.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_766.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_766.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_766.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_766.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_766.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_766.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_766.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_768.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_768.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_768.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_768.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_768.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_768.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_768.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_768.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_768.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_768.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_768.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_768.hide-d {
    display: none; } }

/*  */


#stacks_out_772 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_772 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_772 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_772 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_772 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_772 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_772 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}


 

#stacks_in_774-wrapper.card {
	background: transparent !important;
	overflow: hidden !important;
}

#stacks_in_774-wrapper .card-header {
	
	background-color: var(--bs-white);
	
	
}

#stacks_in_774-wrapper.custom-radius,
#stacks_in_774-wrapper .card-body.custom-radius {
	border-radius: 13px 13px 13px 13px;
}

#stacks_in_774-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_774-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_774-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_774-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_774-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_774-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 13px !important;
	border-bottom-right-radius: 13px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_774-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_774-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_774-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_774-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_774-wrapper .card-header h1,
#stacks_in_774-wrapper .card-header h2,
#stacks_in_774-wrapper .card-header h3,
#stacks_in_774-wrapper .card-header h4,
#stacks_in_774-wrapper .card-header h5,
#stacks_in_774-wrapper .card-header h6,
#stacks_in_774-wrapper .card-header p:last-of-type,
#stacks_in_774-wrapper .card-header small,
#stacks_in_774-wrapper .card-footer h1,
#stacks_in_774-wrapper .card-footer h2,
#stacks_in_774-wrapper .card-footer h3,
#stacks_in_774-wrapper .card-footer h4,
#stacks_in_774-wrapper .card-footer h5,
#stacks_in_774-wrapper .card-footer h6,
#stacks_in_774-wrapper .card-footer p:last-of-type,
#stacks_in_774-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_774-wrapper.card {
	
	border-color: var(--bs-primary) !important;
	
	
}

#stacks_in_774-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_774-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_774-wrapper.card,
#stacks_in_774-wrapper.card.custom-shadow,
#stacks_in_774-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_774-wrapper > .card-body.custom-padding {
	padding: 0.90rem;
}

#stacks_in_774-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_774-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_774-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_774-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_774-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_774-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_774-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_774-wrapper img {
 	margin: 0 !important;
 }
 


#stacks_in_776-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_776-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_776-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_776-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_778.blu-svg{text-align:center}#stacks_in_778.blu-svg svg{width:75.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_778.blu-svg{text-align:center}#stacks_in_778.blu-svg svg{width:75.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_778.blu-svg{text-align:center}#stacks_in_778.blu-svg svg{width:86.00px}}@media screen and (min-width:1000px){#stacks_in_778.blu-svg{text-align:center}#stacks_in_778.blu-svg svg{width:96.00px}}  #stacks_in_778.blu-svg svg rectange,#stacks_in_778.blu-svg svg circle,#stacks_in_778.blu-svg svg ellipse,#stacks_in_778.blu-svg svg polygon,#stacks_in_778.blu-svg svg polyline,#stacks_in_778.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_778.blu-svg svg:hover rectange,#stacks_in_778.blu-svg svg:hover circle,#stacks_in_778.blu-svg svg:hover ellipse,#stacks_in_778.blu-svg svg:hover polygon,#stacks_in_778.blu-svg svg:hover polyline,#stacks_in_778.blu-svg svg:hover path{fill:rgba(13, 75, 161, 1.00)!important} #stacks_in_778.blu-svg{float:none}#stacks_in_778 a,#stacks_in_778 svg{cursor:auto}



#stacks_in_810-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_810-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_810-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_810-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_812-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_812-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_812-header {
	margin-bottom: 0;
}






.stacks_in_812-header {
	font-size: 2.30rem;
}

@media (min-width: 576px) {
	.stacks_in_812-header {
		font-size: 2.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_812-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_812-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_812-header {
		font-size: 1.85rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_812-header {
		font-size: 1.85rem;
	}
}




/* Base Margins */
.stacks_in_1034.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1034.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1034.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1034.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1034.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1034.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_1034.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_1034.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_1034.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1034.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_789-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_789-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_789-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_789-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_790-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-secondary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_790-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_790-header {
	margin-bottom: 0;
}






.stacks_in_790-header {
	font-size: 3.00rem;
}

@media (min-width: 576px) {
	.stacks_in_790-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_790-header {
		font-size: 1.90rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_790-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_790-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_790-header {
		font-size: 2.00rem;
	}
}



#stacks_in_793-wrapper .badge {
	
	font-weight: 700;
	
}

#stacks_in_793-wrapper .badge.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_793-wrapper .badge {
	
	background: var(--bs-primary);
	
	
	

	
	
	color: rgba(255, 255, 255, 1.00);
}


/* Base Margins */
#stacks_in_793-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_793-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_793-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_793-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_793-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_793-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_794-wrapper {
	
	font-weight: 400;
	
	
	
}

#stacks_in_794-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_794-wrapper {
	
	
	
	color: var(--bs-danger);
	
}



/* Base Margins */
#stacks_in_794-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_794-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_794-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_794-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_794-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_794-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}
#stacks_out_796 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_796 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_796 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_796 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_796 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_796 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_796 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (my-unique-id)";
	text-transform: capitalize;
}





#stacks_in_781-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_781-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_781-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_781-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_782-wrapper,
#stacks_in_782-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_782-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_782-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_782-wrapper {
	background-position: center center;
}


#stacks_in_782-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_782-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_782-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_782-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_782-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_782-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_782-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_782-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_782-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_782-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_782-wrapper.bkg-preset {
	background: var(--bs-primary);
}

#stacks_in_782-wrapper.bkg-solid-color {
	background: rgba(126, 47, 22, 1.00);
}

#stacks_in_782-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_782-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_782-wrapper.custom-corners,
#stacks_in_782-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_782-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_782-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_782-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_782-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_782-wrapper {
	
	border-color: rgba(177, 112, 62, 1.00) !important;
	
	
	
	
}








	

	





#stacks_out_5349 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_5349 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_5349 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_5349 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_5349 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_5349 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_5349 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (inside)";
	text-transform: capitalize;
}





#stacks_in_5316-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5316-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5316-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5316-margins.padding-advanced {
	padding: 1.00rem 0.25rem 1.00rem 0.25rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_5317-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.20rem;
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_5317-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_5317-header {
	margin-bottom: 0;
}








#stacks_in_5320-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5320-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5320-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5320-margins.padding-advanced {
	padding: 1.00rem 0.50rem 1.00rem 0.50rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_5320-margins.padding-advanced {
		padding: 1.00rem 0.50rem 1.00rem 0.50rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_5320-margins.padding-advanced {
		padding: 1.00rem 0.50rem 1.00rem 0.50rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_5321-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_5321-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1040-wrapper {
	
	
	
}

#stacks_in_1040-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_1040-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_1040-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1040-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1040-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1040-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1040-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1040-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_815-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_815-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_815-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_815-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_815-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_815-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_816-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_816-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_816-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_816-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_818-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_818-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_818-header {
	margin-bottom: 0;
}






.stacks_in_818-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_818-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_818-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_818-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_818-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_818-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_821 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_821 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_821 body {
    margin: 0; }
  #listify_stacks_in_821 article, #listify_stacks_in_821 aside, #listify_stacks_in_821 details, #listify_stacks_in_821 figcaption, #listify_stacks_in_821 figure, #listify_stacks_in_821 footer, #listify_stacks_in_821 header, #listify_stacks_in_821 hgroup, #listify_stacks_in_821 main, #listify_stacks_in_821 menu, #listify_stacks_in_821 nav, #listify_stacks_in_821 section, #listify_stacks_in_821 summary {
    display: block; }
  #listify_stacks_in_821 audio, #listify_stacks_in_821 canvas, #listify_stacks_in_821 progress, #listify_stacks_in_821 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_821 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_821 [hidden], #listify_stacks_in_821 template {
    display: none; }
  #listify_stacks_in_821 a {
    background-color: transparent; }
    #listify_stacks_in_821 a:active, #listify_stacks_in_821 a:hover {
      outline: 0; }
  #listify_stacks_in_821 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_821 b, #listify_stacks_in_821 strong {
    font-weight: bold; }
  #listify_stacks_in_821 dfn {
    font-style: italic; }
  #listify_stacks_in_821 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_821 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_821 small {
    font-size: 80%; }
  #listify_stacks_in_821 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_821 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_821 sub {
    bottom: -0.25em; }
  #listify_stacks_in_821 img {
    border: 0; }
  #listify_stacks_in_821 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_821 figure {
    margin: 1em 40px; }
  #listify_stacks_in_821 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_821 pre {
    overflow: auto; }
  #listify_stacks_in_821 code, #listify_stacks_in_821 kbd, #listify_stacks_in_821 pre, #listify_stacks_in_821 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_821 button, #listify_stacks_in_821 input, #listify_stacks_in_821 optgroup, #listify_stacks_in_821 select, #listify_stacks_in_821 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_821 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_821 select {
    text-transform: none; }
  #listify_stacks_in_821 button, #listify_stacks_in_821 html input[type="button"], #listify_stacks_in_821 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_821 button[disabled], #listify_stacks_in_821 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_821 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_821 input {
    line-height: normal; }
    #listify_stacks_in_821 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_821 input[type="checkbox"], #listify_stacks_in_821 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_821 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_821 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_821 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_821 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_821 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_821 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_821 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_821 textarea {
    overflow: auto; }
  #listify_stacks_in_821 optgroup {
    font-weight: bold; }
  #listify_stacks_in_821 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_821 td, #listify_stacks_in_821 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_821 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_821 [class^="w-icon-"], #listify_stacks_in_821 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_821 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_821 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_821 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_821 .w-icon-arrow-down:before, #listify_stacks_in_821 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_821 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_821 html {
    height: 100%; }
  #listify_stacks_in_821 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_821 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_821 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_821 .w-block {
    display: block; }
  #listify_stacks_in_821 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_821 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_821 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_821 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_821 .w-hidden {
    display: none; }
  #listify_stacks_in_821 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_821 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_821 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_821 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_821 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_821 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_821 h1, #listify_stacks_in_821 h2, #listify_stacks_in_821 h3, #listify_stacks_in_821 h4, #listify_stacks_in_821 h5, #listify_stacks_in_821 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_821 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_821 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_821 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_821 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_821 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_821 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_821 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_821 a:focus {
    outline: 0; }
  #listify_stacks_in_821 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_821 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_821 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_821 ul, #listify_stacks_in_821 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_821 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_821 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_821 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_821 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_821 .w-video iframe, #listify_stacks_in_821 .w-video object, #listify_stacks_in_821 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_821 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_821 button, #listify_stacks_in_821 html input[type="button"], #listify_stacks_in_821 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_821 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_821 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_821 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_821 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_821 .w-input, #listify_stacks_in_821 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_821 .w-input:-moz-placeholder, #listify_stacks_in_821 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_821 .w-input::-moz-placeholder, #listify_stacks_in_821 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_821 .w-input:-ms-input-placeholder, #listify_stacks_in_821 .w-select:-ms-input-placeholder, #listify_stacks_in_821 .w-input::-webkit-input-placeholder, #listify_stacks_in_821 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_821 .w-input:focus, #listify_stacks_in_821 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_821 .w-input[disabled], #listify_stacks_in_821 .w-select[disabled], #listify_stacks_in_821 .w-input[readonly], #listify_stacks_in_821 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_821 fieldset[disabled] .w-input, #listify_stacks_in_821 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_821 textarea.w-input, #listify_stacks_in_821 textarea.w-select {
    height: auto; }
  #listify_stacks_in_821 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_821 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_821 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_821 .w-checkbox, #listify_stacks_in_821 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_821 .w-checkbox:before, #listify_stacks_in_821 .w-radio:before, #listify_stacks_in_821 .w-checkbox:after, #listify_stacks_in_821 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_821 .w-checkbox:after, #listify_stacks_in_821 .w-radio:after {
    clear: both; }
  #listify_stacks_in_821 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_821 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_821 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_821 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_821 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_821 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_821 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_821 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_821 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_821 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_821 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_821 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_821 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_821 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_821 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_821 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_821 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_821 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_821 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_821 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_821 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_821 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_821 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_821 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_821 .w-container {
      max-width: 728px; }
    #listify_stacks_in_821 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_821 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_821 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_821 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_821 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_821 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_821 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_821 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_821 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_821 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_821 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_821 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_821 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_821 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_821 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_821 .w-hidden-main, #listify_stacks_in_821 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_821 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_821 .w-row, #listify_stacks_in_821 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_821 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_821 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_821 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_821 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_821 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_821 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_821 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_821 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_821 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_821 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_821 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_821 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_821 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_821 .w-container {
      max-width: none; }
    #listify_stacks_in_821 .w-hidden-main, #listify_stacks_in_821 .w-hidden-medium, #listify_stacks_in_821 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_821 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_821 .w-col {
      width: 100%; }
    #listify_stacks_in_821 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_821 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_821 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_821 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_821 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_821 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_821 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_821 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_821 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_821 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_821 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_821 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_821 .w-widget {
    position: relative; }
  #listify_stacks_in_821 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_821 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_821 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_821 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_821 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_821 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_821 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_821 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_821 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_821 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_821 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_821 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_821 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_821 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_821 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_821 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_821 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_821 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_821 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_821 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_821 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_821 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_821 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_821 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_821 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_821 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_821 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_821 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_821 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_821 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_821 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_821 .w-slider-arrow-left, #listify_stacks_in_821 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_821 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_821 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_821 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_821 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_821 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_821 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_821 .w-icon-slider-left, #listify_stacks_in_821 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_821 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_821 .w-dropdown-btn, #listify_stacks_in_821 .w-dropdown-toggle, #listify_stacks_in_821 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_821 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_821 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_821 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_821 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_821 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_821 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_821 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_821 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_821 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_821 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_821 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_821 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_821 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_821 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_821 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_821 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_821 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_821 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_821 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_821 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_821 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_821 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_821 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_821 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_821 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_821 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_821 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_821 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_821 .w-lightbox-frame, #listify_stacks_in_821 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_821 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_821 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_821 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_821 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_821 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_821 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_821 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_821 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_821 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_821 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_821 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_821 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_821 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_821 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_821 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_821 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_821 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_821 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_821 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_821 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_821 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_821 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_821 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_821 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_821 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_821 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_821 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_821 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_821 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_821 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_821 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_821 .w-lightbox-left, #listify_stacks_in_821 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_821 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_821 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_821 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_821 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_821 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_821 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_821 .w-richtext ol, #listify_stacks_in_821 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_821 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_821 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_821 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_821 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_821 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_821 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_821 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_821 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_821 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_821 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_821 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_821 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_821 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_821 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_821 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_821 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_821 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_821 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_821 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_821 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_821 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_821 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_821 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_821 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_821 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_821 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_821 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_821 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_821 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_821 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_821 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_821 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_821 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_821 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_821 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_821 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_821 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_821 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_821 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_821 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_821 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_821 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_821 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_821 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_821 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_821 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_821 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_821 .w-tabs {
    position: relative; }
    #listify_stacks_in_821 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_821 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_821 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_821 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_821 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_821 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_821 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_821 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_821 .w-tab-link {
      display: block; } }
  #listify_stacks_in_821 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_821 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_821 .w-dyn-bind-empty, #listify_stacks_in_821 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_821 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_821 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_821 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_821 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_821 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_821 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_821 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_821 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_821 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_821 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_821 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_821 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_821 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_821 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_821 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_821 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_821 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_821 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_821 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_821 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_821 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_821.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_821.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_821.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_822.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_822.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_822.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_822.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_822.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_822.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_822.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_822.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_822.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_822.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_822.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_822.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_824.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_824.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_824.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_824.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_824.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_824.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_824.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_824.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_824.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_824.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_824.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_824.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_826.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_826.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_826.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_826.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_826.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_826.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_826.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_826.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_826.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_826.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_826.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_826.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_828.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_828.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_828.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_828.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_828.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_828.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_828.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_828.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_828.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_828.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_828.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_828.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_830.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_830.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_830.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_830.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_830.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_830.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_830.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_830.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_830.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_830.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_830.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_830.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_832.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_832.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_832.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_832.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_832.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_832.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_832.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_832.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_832.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_832.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_832.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_832.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_834.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_834.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_834.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_834.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_834.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_834.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(84, 191, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_834.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_834.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_834.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_834.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_834.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_834.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_836.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_836.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_836.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_836.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_836.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_836.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_836.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_836.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_836.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_836.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_836.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_836.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_838.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_838.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_838.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_838.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_838.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_838.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(84, 191, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_838.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_838.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_838.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_838.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_838.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_838.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_840.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_840.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_840.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_840.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_840.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_840.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_840.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_840.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_840.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_840.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_840.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_840.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_842.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_842.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_842.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_842.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_842.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_842.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_842.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_842.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_842.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_842.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_842.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_842.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_844.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_844.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_844.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_844.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_844.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_844.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_844.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_844.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_844.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_844.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_844.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_844.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_846.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_846.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_846.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_846.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_846.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_846.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_846.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_846.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_846.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_846.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_846.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_846.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_848.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_848.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_848.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_848.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_848.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_848.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_848.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_848.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_848.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_848.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_848.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_848.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_850.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_850.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_850.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_850.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_850.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_850.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_850.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_850.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_850.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_850.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_850.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_850.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_852.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_852.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_852.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_852.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_852.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_852.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_852.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_852.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_852.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_852.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_852.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_852.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_854.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_854.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_854.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_854.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_854.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_854.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_854.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_854.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_854.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_854.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_854.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_854.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_856.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_856.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_856.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_856.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_856.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_856.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_856.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_856.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_856.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_856.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_856.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_856.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_858.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_858.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_858.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_858.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_858.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_858.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_858.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_858.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_858.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_858.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_858.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_858.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_860.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_860.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_860.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_860.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_860.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_860.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_860.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_860.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_860.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_860.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_860.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_860.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_862.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_862.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_862.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_862.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_862.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_862.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_862.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_862.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_862.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_862.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_862.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_862.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_864.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_864.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_864.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_864.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_864.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_864.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_864.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_864.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_864.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_864.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_864.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_864.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_866.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_866.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_866.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_866.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_866.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_866.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_866.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_866.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_866.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_866.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_866.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_866.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_868.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_868.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_868.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_868.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_868.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_868.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_868.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_868.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_868.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_868.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_868.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_868.hide-d {
    display: none; } }

/*  */


#stacks_out_872 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_872 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_872 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_872 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_872 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_872 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_872 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}


 

#stacks_in_874-wrapper.card {
	background: transparent !important;
	overflow: hidden !important;
}

#stacks_in_874-wrapper .card-header {
	
	background-color: var(--bs-white);
	
	
}

#stacks_in_874-wrapper.custom-radius,
#stacks_in_874-wrapper .card-body.custom-radius {
	border-radius: 13px 13px 13px 13px;
}

#stacks_in_874-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_874-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_874-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_874-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_874-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_874-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 13px !important;
	border-bottom-right-radius: 13px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_874-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_874-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_874-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_874-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_874-wrapper .card-header h1,
#stacks_in_874-wrapper .card-header h2,
#stacks_in_874-wrapper .card-header h3,
#stacks_in_874-wrapper .card-header h4,
#stacks_in_874-wrapper .card-header h5,
#stacks_in_874-wrapper .card-header h6,
#stacks_in_874-wrapper .card-header p:last-of-type,
#stacks_in_874-wrapper .card-header small,
#stacks_in_874-wrapper .card-footer h1,
#stacks_in_874-wrapper .card-footer h2,
#stacks_in_874-wrapper .card-footer h3,
#stacks_in_874-wrapper .card-footer h4,
#stacks_in_874-wrapper .card-footer h5,
#stacks_in_874-wrapper .card-footer h6,
#stacks_in_874-wrapper .card-footer p:last-of-type,
#stacks_in_874-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_874-wrapper.card {
	
	border-color: var(--bs-primary) !important;
	
	
}

#stacks_in_874-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_874-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_874-wrapper.card,
#stacks_in_874-wrapper.card.custom-shadow,
#stacks_in_874-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_874-wrapper > .card-body.custom-padding {
	padding: 0.90rem;
}

#stacks_in_874-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_874-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_874-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_874-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_874-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_874-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_874-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_874-wrapper img {
 	margin: 0 !important;
 }
 


#stacks_in_876-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_876-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_876-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_876-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_878.blu-svg{text-align:center}#stacks_in_878.blu-svg svg{width:75.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_878.blu-svg{text-align:center}#stacks_in_878.blu-svg svg{width:75.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_878.blu-svg{text-align:center}#stacks_in_878.blu-svg svg{width:86.00px}}@media screen and (min-width:1000px){#stacks_in_878.blu-svg{text-align:center}#stacks_in_878.blu-svg svg{width:96.00px}}  #stacks_in_878.blu-svg svg rectange,#stacks_in_878.blu-svg svg circle,#stacks_in_878.blu-svg svg ellipse,#stacks_in_878.blu-svg svg polygon,#stacks_in_878.blu-svg svg polyline,#stacks_in_878.blu-svg svg path{fill:rgba(12, 97, 176, 0.20)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_878.blu-svg svg:hover rectange,#stacks_in_878.blu-svg svg:hover circle,#stacks_in_878.blu-svg svg:hover ellipse,#stacks_in_878.blu-svg svg:hover polygon,#stacks_in_878.blu-svg svg:hover polyline,#stacks_in_878.blu-svg svg:hover path{fill:rgba(13, 75, 161, 1.00)!important} #stacks_in_878.blu-svg{float:none}#stacks_in_878 a,#stacks_in_878 svg{cursor:auto}



#stacks_in_910-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_910-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_910-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_910-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_912-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_912-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_912-header {
	margin-bottom: 0;
}






.stacks_in_912-header {
	font-size: 2.30rem;
}

@media (min-width: 576px) {
	.stacks_in_912-header {
		font-size: 2.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_912-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_912-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_912-header {
		font-size: 1.85rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_912-header {
		font-size: 1.85rem;
	}
}




/* Base Margins */
.stacks_in_1093.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1093.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1093.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1093.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1093.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1093.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_1093.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_1093.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_1093.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1093.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_889-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_889-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_889-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_889-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_890-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-secondary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_890-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_890-header {
	margin-bottom: 0;
}






.stacks_in_890-header {
	font-size: 3.00rem;
}

@media (min-width: 576px) {
	.stacks_in_890-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_890-header {
		font-size: 1.90rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_890-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_890-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_890-header {
		font-size: 2.00rem;
	}
}



#stacks_in_893-wrapper .badge {
	
	font-weight: 700;
	
}

#stacks_in_893-wrapper .badge.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_893-wrapper .badge {
	
	background: var(--bs-primary);
	
	
	

	
	
	color: rgba(255, 255, 255, 1.00);
}


/* Base Margins */
#stacks_in_893-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_893-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_893-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_893-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_893-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_893-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_894-wrapper {
	
	font-weight: 400;
	
	
	
}

#stacks_in_894-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_894-wrapper {
	
	
	
	color: var(--bs-danger);
	
}



/* Base Margins */
#stacks_in_894-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_894-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_894-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_894-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_894-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_894-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}
#stacks_out_5334 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_5334 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_5334 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_5334 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_5334 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_5334 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_5334 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (my-unique-id)";
	text-transform: capitalize;
}





#stacks_in_5335-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5335-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_5335-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5335-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_5337-wrapper,
#stacks_in_5337-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_5337-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_5337-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_5337-wrapper {
	background-position: center center;
}


#stacks_in_5337-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_5337-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_5337-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_5337-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_5337-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_5337-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_5337-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_5337-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_5337-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_5337-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_5337-wrapper.bkg-preset {
	background: var(--bs-primary);
}

#stacks_in_5337-wrapper.bkg-solid-color {
	background: rgba(65, 42, 22, 1.00);
}

#stacks_in_5337-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_5337-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_5337-wrapper.custom-corners,
#stacks_in_5337-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_5337-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_5337-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_5337-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_5337-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_5337-wrapper {
	
	border-color: rgba(247, 247, 249, 1.00) !important;
	
	
	
	
}








	

	





#stacks_out_896 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_896 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_896 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_896 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_896 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_896 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_896 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (inside)";
	text-transform: capitalize;
}





#stacks_in_5339-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5339-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5339-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5339-margins.padding-advanced {
	padding: 1.00rem 0.25rem 1.00rem 0.25rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_5341-header {
	
	font-weight: 700;
	
	
	
	
	font-size: 1.20rem;
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_5341-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_5341-header {
	margin-bottom: 0;
}








#stacks_in_5344-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5344-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5344-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5344-margins.padding-advanced {
	padding: 1.00rem 0.50rem 1.00rem 0.50rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_5344-margins.padding-advanced {
		padding: 1.00rem 0.50rem 1.00rem 0.50rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_5344-margins.padding-advanced {
		padding: 1.00rem 0.50rem 1.00rem 0.50rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_5345-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_5345-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1099-wrapper {
	
	
	
}

#stacks_in_1099-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_1099-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_1099-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1099-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1099-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1099-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1099-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1099-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





#stacks_in_915-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_915-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_915-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_915-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_915-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_915-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_916-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_916-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_916-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_916-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_918-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_918-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_918-header {
	margin-bottom: 0;
}






.stacks_in_918-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_918-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_918-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_918-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_918-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_918-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_921 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_921 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_921 body {
    margin: 0; }
  #listify_stacks_in_921 article, #listify_stacks_in_921 aside, #listify_stacks_in_921 details, #listify_stacks_in_921 figcaption, #listify_stacks_in_921 figure, #listify_stacks_in_921 footer, #listify_stacks_in_921 header, #listify_stacks_in_921 hgroup, #listify_stacks_in_921 main, #listify_stacks_in_921 menu, #listify_stacks_in_921 nav, #listify_stacks_in_921 section, #listify_stacks_in_921 summary {
    display: block; }
  #listify_stacks_in_921 audio, #listify_stacks_in_921 canvas, #listify_stacks_in_921 progress, #listify_stacks_in_921 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_921 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_921 [hidden], #listify_stacks_in_921 template {
    display: none; }
  #listify_stacks_in_921 a {
    background-color: transparent; }
    #listify_stacks_in_921 a:active, #listify_stacks_in_921 a:hover {
      outline: 0; }
  #listify_stacks_in_921 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_921 b, #listify_stacks_in_921 strong {
    font-weight: bold; }
  #listify_stacks_in_921 dfn {
    font-style: italic; }
  #listify_stacks_in_921 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_921 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_921 small {
    font-size: 80%; }
  #listify_stacks_in_921 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_921 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_921 sub {
    bottom: -0.25em; }
  #listify_stacks_in_921 img {
    border: 0; }
  #listify_stacks_in_921 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_921 figure {
    margin: 1em 40px; }
  #listify_stacks_in_921 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_921 pre {
    overflow: auto; }
  #listify_stacks_in_921 code, #listify_stacks_in_921 kbd, #listify_stacks_in_921 pre, #listify_stacks_in_921 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_921 button, #listify_stacks_in_921 input, #listify_stacks_in_921 optgroup, #listify_stacks_in_921 select, #listify_stacks_in_921 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_921 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_921 select {
    text-transform: none; }
  #listify_stacks_in_921 button, #listify_stacks_in_921 html input[type="button"], #listify_stacks_in_921 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_921 button[disabled], #listify_stacks_in_921 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_921 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_921 input {
    line-height: normal; }
    #listify_stacks_in_921 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_921 input[type="checkbox"], #listify_stacks_in_921 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_921 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_921 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_921 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_921 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_921 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_921 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_921 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_921 textarea {
    overflow: auto; }
  #listify_stacks_in_921 optgroup {
    font-weight: bold; }
  #listify_stacks_in_921 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_921 td, #listify_stacks_in_921 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_921 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_921 [class^="w-icon-"], #listify_stacks_in_921 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_921 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_921 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_921 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_921 .w-icon-arrow-down:before, #listify_stacks_in_921 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_921 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_921 html {
    height: 100%; }
  #listify_stacks_in_921 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_921 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_921 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_921 .w-block {
    display: block; }
  #listify_stacks_in_921 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_921 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_921 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_921 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_921 .w-hidden {
    display: none; }
  #listify_stacks_in_921 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_921 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_921 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_921 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_921 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_921 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_921 h1, #listify_stacks_in_921 h2, #listify_stacks_in_921 h3, #listify_stacks_in_921 h4, #listify_stacks_in_921 h5, #listify_stacks_in_921 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_921 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_921 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_921 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_921 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_921 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_921 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_921 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_921 a:focus {
    outline: 0; }
  #listify_stacks_in_921 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_921 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_921 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_921 ul, #listify_stacks_in_921 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_921 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_921 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_921 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_921 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_921 .w-video iframe, #listify_stacks_in_921 .w-video object, #listify_stacks_in_921 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_921 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_921 button, #listify_stacks_in_921 html input[type="button"], #listify_stacks_in_921 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_921 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_921 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_921 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_921 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_921 .w-input, #listify_stacks_in_921 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_921 .w-input:-moz-placeholder, #listify_stacks_in_921 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_921 .w-input::-moz-placeholder, #listify_stacks_in_921 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_921 .w-input:-ms-input-placeholder, #listify_stacks_in_921 .w-select:-ms-input-placeholder, #listify_stacks_in_921 .w-input::-webkit-input-placeholder, #listify_stacks_in_921 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_921 .w-input:focus, #listify_stacks_in_921 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_921 .w-input[disabled], #listify_stacks_in_921 .w-select[disabled], #listify_stacks_in_921 .w-input[readonly], #listify_stacks_in_921 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_921 fieldset[disabled] .w-input, #listify_stacks_in_921 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_921 textarea.w-input, #listify_stacks_in_921 textarea.w-select {
    height: auto; }
  #listify_stacks_in_921 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_921 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_921 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_921 .w-checkbox, #listify_stacks_in_921 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_921 .w-checkbox:before, #listify_stacks_in_921 .w-radio:before, #listify_stacks_in_921 .w-checkbox:after, #listify_stacks_in_921 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_921 .w-checkbox:after, #listify_stacks_in_921 .w-radio:after {
    clear: both; }
  #listify_stacks_in_921 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_921 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_921 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_921 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_921 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_921 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_921 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_921 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_921 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_921 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_921 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_921 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_921 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_921 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_921 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_921 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_921 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_921 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_921 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_921 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_921 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_921 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_921 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_921 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_921 .w-container {
      max-width: 728px; }
    #listify_stacks_in_921 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_921 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_921 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_921 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_921 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_921 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_921 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_921 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_921 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_921 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_921 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_921 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_921 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_921 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_921 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_921 .w-hidden-main, #listify_stacks_in_921 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_921 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_921 .w-row, #listify_stacks_in_921 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_921 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_921 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_921 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_921 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_921 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_921 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_921 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_921 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_921 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_921 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_921 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_921 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_921 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_921 .w-container {
      max-width: none; }
    #listify_stacks_in_921 .w-hidden-main, #listify_stacks_in_921 .w-hidden-medium, #listify_stacks_in_921 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_921 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_921 .w-col {
      width: 100%; }
    #listify_stacks_in_921 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_921 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_921 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_921 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_921 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_921 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_921 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_921 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_921 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_921 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_921 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_921 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_921 .w-widget {
    position: relative; }
  #listify_stacks_in_921 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_921 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_921 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_921 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_921 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_921 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_921 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_921 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_921 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_921 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_921 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_921 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_921 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_921 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_921 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_921 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_921 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_921 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_921 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_921 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_921 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_921 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_921 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_921 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_921 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_921 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_921 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_921 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_921 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_921 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_921 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_921 .w-slider-arrow-left, #listify_stacks_in_921 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_921 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_921 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_921 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_921 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_921 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_921 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_921 .w-icon-slider-left, #listify_stacks_in_921 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_921 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_921 .w-dropdown-btn, #listify_stacks_in_921 .w-dropdown-toggle, #listify_stacks_in_921 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_921 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_921 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_921 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_921 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_921 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_921 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_921 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_921 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_921 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_921 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_921 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_921 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_921 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_921 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_921 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_921 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_921 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_921 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_921 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_921 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_921 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_921 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_921 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_921 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_921 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_921 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_921 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_921 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_921 .w-lightbox-frame, #listify_stacks_in_921 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_921 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_921 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_921 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_921 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_921 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_921 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_921 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_921 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_921 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_921 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_921 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_921 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_921 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_921 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_921 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_921 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_921 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_921 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_921 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_921 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_921 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_921 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_921 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_921 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_921 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_921 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_921 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_921 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_921 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_921 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_921 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_921 .w-lightbox-left, #listify_stacks_in_921 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_921 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_921 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_921 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_921 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_921 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_921 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_921 .w-richtext ol, #listify_stacks_in_921 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_921 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_921 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_921 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_921 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_921 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_921 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_921 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_921 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_921 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_921 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_921 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_921 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_921 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_921 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_921 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_921 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_921 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_921 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_921 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_921 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_921 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_921 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_921 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_921 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_921 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_921 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_921 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_921 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_921 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_921 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_921 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_921 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_921 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_921 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_921 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_921 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_921 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_921 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_921 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_921 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_921 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_921 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_921 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_921 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_921 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_921 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_921 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_921 .w-tabs {
    position: relative; }
    #listify_stacks_in_921 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_921 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_921 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_921 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_921 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_921 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_921 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_921 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_921 .w-tab-link {
      display: block; } }
  #listify_stacks_in_921 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_921 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_921 .w-dyn-bind-empty, #listify_stacks_in_921 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_921 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_921 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_921 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_921 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_921 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_921 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_921 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_921 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_921 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_921 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_921 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_921 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_921 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_921 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_921 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_921 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_921 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_921 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_921 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_921 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_921 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_921.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_921.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_921.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_922.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_922.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_922.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_922.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_922.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_922.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_922.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_922.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_922.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_922.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_922.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_922.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_924.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_924.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_924.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_924.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_924.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_924.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_924.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_924.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_924.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_924.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_924.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_924.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_926.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_926.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_926.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_926.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_926.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_926.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_926.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_926.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_926.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_926.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_926.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_926.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_928.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_928.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_928.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_928.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_928.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_928.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_928.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_928.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_928.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_928.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_928.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_928.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_930.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_930.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_930.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_930.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_930.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_930.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_930.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_930.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_930.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_930.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_930.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_930.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_932.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_932.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_932.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_932.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_932.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_932.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_932.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_932.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 11px;
    line-height: 17px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_932.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_932.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_932.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_932.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_934.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_934.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_934.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_934.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_934.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_934.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_934.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_934.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_934.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_934.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_934.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_934.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_936.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_936.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_936.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_936.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_936.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_936.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_936.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_936.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_936.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_936.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_936.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_936.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_938.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_938.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_938.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_938.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_938.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_938.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_938.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_938.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_938.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_938.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_938.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_938.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_940.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_940.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_940.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_940.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_940.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_940.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_940.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_940.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_940.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_940.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_940.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_940.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_942.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_942.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_942.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_942.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_942.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_942.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_942.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_942.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_942.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_942.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_942.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_942.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_944.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_944.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_944.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_944.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_944.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_944.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_944.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_944.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_944.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_944.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_944.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_944.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_946.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_946.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_946.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_946.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_946.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_946.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_946.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_946.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_946.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_946.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_946.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_946.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_948.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_948.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_948.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_948.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_948.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_948.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_948.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_948.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_948.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_948.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_948.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_948.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_950.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_950.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_950.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_950.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_950.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_950.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_950.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_950.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_950.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_950.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_950.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_950.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_952.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_952.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_952.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_952.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_952.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_952.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_952.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_952.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_952.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_952.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_952.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_952.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_954.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_954.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_954.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_954.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_954.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_954.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_954.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_954.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_954.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_954.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_954.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_954.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_956.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_956.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_956.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_956.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_956.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_956.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_956.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_956.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_956.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_956.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_956.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_956.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_958.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_958.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_958.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_958.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_958.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_958.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_958.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_958.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_958.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_958.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_958.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_958.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_960.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_960.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_960.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_960.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_960.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_960.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_960.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_960.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_960.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_960.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_960.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_960.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_962.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_962.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_962.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_962.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_962.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_962.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_962.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_962.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_962.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_962.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_962.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_962.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_964.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_964.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_964.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_964.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_964.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_964.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_964.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_964.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_964.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_964.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_964.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_964.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_966.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_966.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_966.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_966.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_966.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_966.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_966.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_966.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_966.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_966.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_966.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_966.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_968.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_968.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_968.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_968.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_968.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_968.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_968.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_968.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_968.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_968.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_968.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_968.hide-d {
    display: none; } }

/*  */


/*  
GENERAL
*/
#stacks_in_5386,
#stacks_in_5386 .toggle-this-wrap-outer {
  width: 100%;
}
#stacks_in_5386 .toggle-this-wrap-outer,
#stacks_in_5386 .toggle-this-wrap-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /*  */
  /*  */
}
#stacks_in_5386 .toggle-this-wrap-inner {
  width: auto;
}
#stacks_in_5386 .toggle-this-wrap-inner > div {
  -ms-flex-item-align: center;
  align-self: center;
}
#stacks_in_5386 .toggle-this-wrap-inner .tt-label-left, #stacks_in_5386 .toggle-this-wrap-inner .tt-label-right {
  font-size: 17.000000px;
  line-height: 17.000000px;
}
/*  */
#stacks_in_5386 .toggle-this {
  margin: 10px 5px;
}
#stacks_in_5386 .toggle-this.ts-3 {
  margin: 10px 10px;
}
#stacks_in_5386 .toggle-this > * {
  z-index: 1;
}
#stacks_in_5386 .toggle-this:after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 50px;
  border-radius: 50px;
  z-index: 0;
}

#stacks_in_5386 .toggle-this,
#stacks_in_5386 .toggle-this .label-bg,
#stacks_in_5386 .toggle-this .label-bg > .left-color,
#stacks_in_5386 .toggle-this .label-bg > .right-color {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 60px;
  height: 30px;
  border-radius: 30px;
}
#stacks_in_5386 .toggle-this .label-bg > div > div,
#stacks_in_5386 .toggle-this label,
#stacks_in_5386 .toggle-this label:after,
#stacks_in_5386 .toggle-this label:before {
  width: 30px;
  height: 30px;
}
#stacks_in_5386 input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  z-index: 4;
}
#stacks_in_5386 .toggle-this label,
#stacks_in_5386 .toggle-this .label-bg,
#stacks_in_5386 .toggle-this label:after,
#stacks_in_5386 .toggle-this .label-bg > .left-color,
#stacks_in_5386 .toggle-this .label-bg > .right-color,
#stacks_in_5386 .toggle-this .label-bg > div > div {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
#stacks_in_5386 .toggle-this .label-bg > div > div {
  left: 22.500000px;
}
#stacks_in_5386 .toggle-this.ts-type-4.ts-1 .label-bg > div > div {
  left: 27.500000px;
}
#stacks_in_5386 .toggle-this.ts-type-4.ts-1 .label-bg > .left-color > div {
  left: 0px;
}
#stacks_in_5386 input[type="checkbox"]:checked + .toggle-this label {
  -webkit-transform: translate(30px,0);
  transform: translate(30px,0);
}
#stacks_in_5386 .toggle-this:before {
  width: 70px;
  height: 40px;
  border-radius: 40px;
  top: -5px;
  left: -5px;
}
#stacks_in_5386 .toggle-this.ts-type-4:after {
  width: 100px;
}
#stacks_in_5386 .toggle-this.ts-type-2:before {
  width: 70px;
  height: 20px;
  border-radius: 20px;
  top: 5.000000px;
  left: -5px;
}


#stacks_in_5386 .toggle-this.ts-type-4,
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg,
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .left-color,
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .right-color {
  width: 80px;
  height: 30px;
}
#stacks_in_5386 .toggle-this.ts-type-4 label,
#stacks_in_5386 .toggle-this.ts-type-4 label:after,
#stacks_in_5386 .toggle-this.ts-type-4 label:before {
  width: 30px;
  height: 30px;
}
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > div > div {
  width: 52.500000px;
  height: 45px;
}
#stacks_in_5386 input[type="checkbox"]:checked + .toggle-this.ts-type-4 label {
  -webkit-transform: translate(50px,0);
  transform: translate(50px,0);
}
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .left-color > div:after,
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .right-color > div:after {
  line-height: 30px;
}
#stacks_in_5386 .toggle-this.ts-type-4:before {
  width: 90px;
  height: 40px;
  border-radius: 40px;
  top: -5px;
  left: -5px;
}
#stacks_in_5386 .toggle-this.ts-type-5, 
#stacks_in_5386 .toggle-this.ts-type-5 .label-bg, 
#stacks_in_5386 .toggle-this.ts-type-5 .label-bg > .left-color, 
#stacks_in_5386 input[type="checkbox"]:checked + .toggle-this.ts-type-5 .label-bg > .left-color {
  width: 30px;
}
#stacks_in_5386 .toggle-this.ts-type-5:before {
  width: 40px;
}
#stacks_in_5386 .toggle-this.ts-type-2 .label-bg {
  height: 9.000000px;
  top: 10.500000px;
} 
/*  */
/*  */

/*  
TOGGLE
*/
#stacks_in_5386 .toggle-this label {
  z-index: 2;
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
}
#stacks_in_5386 .toggle-this label:after {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
  box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
  border-radius: 50%;
  top: 0px;
  left: 0px;
  z-index: 2;
}
#stacks_in_5386 .toggle-this.ts-1 label:after {
  top: -1px;
}
#stacks_in_5386 .toggle-this.ts-2 label:after {
  border: 0px solid transparent; 
  top: 0px;
}
/*  
BACKGROUND
*/
#stacks_in_5386 .toggle-this .label-bg {
  top: 0px;
  left: 0px;
  border: 1px solid rgba(0,0,0,0.15);
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
#stacks_in_5386 .toggle-this .label-bg > .left-color,
#stacks_in_5386 .toggle-this .label-bg > .right-color {
  right: 0;
  left: auto;
  height: 100%;
  width: 75%;
  z-index: 1;
  -webkit-transition: width 150ms linear;
  transition: width 150ms linear;
}
#stacks_in_5386 .toggle-this .label-bg > .right-color {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
#stacks_in_5386 .toggle-this .label-bg > .left-color {
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.1);
  box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.1);
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
  right: auto;
  left: 0;
}
#stacks_in_5386 .toggle-this .label-bg > .left-color > div {
  left: 0;
}
#stacks_in_5386 input[type="checkbox"] + .toggle-this  .label-bg > .left-color {
  width: 0%;
}
#stacks_in_5386 input[type="checkbox"]:checked + .toggle-this  .label-bg > .left-color {
  width: 75%;
}
#stacks_in_5386 input[type="checkbox"]:checked + .toggle-this  .label-bg > .right-color {
  width: 0%;
}
/*  
ICONS
*/
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .left-color > div > span,
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .right-color > div > span {
  position: absolute;
  top: 50%;
  left: auto;
  right: 60%;
  width: 15.000000px;
  height: 3px;
  margin: -2px 0px 0px -1.5px;
  border-radius: 2px;
}
/*  */
/*  */
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .right-color > div > span:nth-child(1) {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .right-color > div > span:nth-child(2) {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .left-color > div > span {
  right: auto;
  left: 40%;
  top: 45%;
  margin: 0;
}
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .left-color > div > span:nth-child(1) {
  display: none;
}
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .left-color > div > span:nth-child(2) {
  -webkit-transform-origin: center;
  transform-origin: center;
  width: 40%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .left-color > div > span:nth-child(2):after {
  content: "";
  position: absolute;
  background: #fff;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  border-radius: 2px;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: rotate(-90deg) translate(0,50%);
  transform: rotate(-90deg) translate(0,50%);
}
/*  
TEXT
*/
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .left-color,
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .right-color {
  overflow: hidden;
}
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .left-color > div:after,
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .right-color > div:after {
  content: "OFF";
  display: block;
  width: 100%;
  height: 100%;
  font-family: arial;
  font-size: 15.000000px;
  text-align: center;
}
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .left-color > div:after {
  content: "ON";
}
/*  
THIN
*/
#stacks_in_5386 .toggle-this.ts-type-2.ts-2 .label-bg {
  width: 90%;
  left: 5%;
} 
#stacks_in_5386 .toggle-this.ts-type-2.ts-3 {
  -webkit-transform: scale(.8);
  transform: scale(.8);
}
#stacks_in_5386 .toggle-this.ts-type-2.ts-3 label:before {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
#stacks_in_5386 .toggle-this.ts-type-2.ts-3 label:after {
  -webkit-transform: scale(.9);
  transform: scale(.9);
}
/*
  CHECKBOX
*/
#stacks_in_5386 .toggle-this.ts-type-5 .label-bg > .right-color {
  display: none;
}
#stacks_in_5386 .toggle-this.ts-type-5 label {
  display: none;
}
#stacks_in_5386 input[type="checkbox"] + .toggle-this.ts-type-5 .label-bg > .left-color {
  width: 100%;
  -webkit-transition: background 150ms linear;
  transition: background 150ms linear;
}
#stacks_in_5386 input[type="checkbox"] + .toggle-this.ts-type-5 .label-bg > .left-color > div > span {
  opacity: 0;
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}
#stacks_in_5386 input[type="checkbox"]:checked + .toggle-this.ts-type-5  .label-bg > .left-color > div > span {
  opacity: 1;
}

#stacks_in_5386 .toggle-this.ts-type-5 .label-bg > .left-color > div > span {
  position: absolute;
  top: 50%;
  left: auto;
  right: 60%;
  width: 15.000000px;
  height: 3px;
  margin: -2px 0px 0px -1.5px;
  border-radius: 2px;
}
/*  */
#stacks_in_5386 .toggle-this.ts-type-5 .label-bg > .left-color > div > span {
  right: auto;
  left: 32%;
  top: 45%;
  margin: 0;
}
/*  */
#stacks_in_5386 .toggle-this.ts-type-5 .label-bg > .left-color > div > span:nth-child(1) {
  display: none;
}
#stacks_in_5386 .toggle-this.ts-type-5 .label-bg > .left-color > div > span:nth-child(2) {
  -webkit-transform-origin: center;
  transform-origin: center;
  width: 40%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#stacks_in_5386 .toggle-this.ts-type-5 .label-bg > .left-color > div > span:nth-child(2):after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  border-radius: 2px;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: rotate(-90deg) translate(0,50%);
  transform: rotate(-90deg) translate(0,50%);
}
/* 
PRESETS
*/
#stacks_in_5386 .toggle-this.ts-2 label:after {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(.8);
  transform: scale(.8);
  -webkit-box-shadow: none;
  box-shadow: none;
}
#stacks_in_5386 .toggle-this.ts-2 .label-bg {
  border: 1px solid transparent;
  background: rgba(0,0,0,0.15);
  -webkit-transition: background 150ms linear;
  transition: background 150ms linear;
}
#stacks_in_5386 .toggle-this.ts-2 .label-bg > .left-color,
#stacks_in_5386 .toggle-this.ts-2 .label-bg > .right-color {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#stacks_in_5386 .toggle-this.ts-2 .label-bg > .left-color > div > span,
#stacks_in_5386 .toggle-this.ts-2 .label-bg > .right-color > div > span {
  right: auto;
  left: 20%;
}
#stacks_in_5386 .toggle-this.ts-2 .label-bg > .right-color > div {
  right: 0;
  left: auto;
}
#stacks_in_5386 .toggle-this.ts-2 .label-bg > .left-color > div > span {
  right: auto;
  left: 40%;
  top: 45%;
  margin: 0;
}
#stacks_in_5386 .toggle-this.ts-2.ts-type-5 .label-bg > .left-color > div > span,
#stacks_in_5386 .toggle-this.ts-3.ts-type-5 .label-bg > .left-color > div > span{
  left: 33%;
}


#stacks_in_5386 .toggle-this:before {
  content: "";
  position: absolute;
  z-index: 1;
}
#stacks_in_5386 .toggle-this.ts-3:before {
  -webkit-box-shadow: inset 0px 5px 5px rgba(0,0,0,0.2),
    inset 0px -5px 5px rgba(0,0,0,0);
  box-shadow: inset 0px 5px 5px rgba(0,0,0,0.15),
    inset 0px -5px 5px rgba(255,255,255,0.4);
}
#stacks_in_5386 .toggle-this.ts-type-2.ts-3:after {
  -webkit-box-shadow: none;
  box-shadow: none;
}
#stacks_in_5386 .toggle-this.ts-3 label:after {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(.7);
  transform: scale(.7);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0px solid transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.10)), to(rgba(0,0,0,0)));
  background-image: linear-gradient(to bottom, rgba(0,0,0,.10) 0%, rgba(0,0,0,0) 100%);
}
#stacks_in_5386 .toggle-this.ts-3 label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0px solid transparent;
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.15),
    0px 2px 3px rgba(0,0,0,0.2);
  box-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.15),
    0px 2px 3px rgba(0,0,0,0.2);
  border-radius: 50%;
  top: 0px;
  left: 0px;
  z-index: 2;
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)), to(rgba(0,0,0,.1)));
  background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.1) 100%);
}
#stacks_in_5386 .toggle-this.ts-3 .label-bg {
  -webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.3);
  box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.3);
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.15);
  -webkit-transition: background 150ms linear;
  transition: background 150ms linear;
}
#stacks_in_5386 .toggle-this.ts-3 .label-bg > .left-color,
#stacks_in_5386 .toggle-this.ts-3 .label-bg > .right-color {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#stacks_in_5386 .toggle-this.ts-3.ts-type-5 .label-bg > .left-color {
  -webkit-box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.3);
  box-shadow: inset 0px 0px 3px 0px rgba(0,0,0,0.3);
}
#stacks_in_5386 .toggle-this.ts-3 .label-bg > .left-color > div > span,
#stacks_in_5386 .toggle-this.ts-3 .label-bg > .right-color > div > span {
  right: auto;
  left: 20%;
}
#stacks_in_5386 .toggle-this.ts-3 .label-bg > .right-color > div {
  right: 0;
  left: auto;
}
#stacks_in_5386 .toggle-this.ts-3 .label-bg > .left-color > div > span {
  right: auto;
  left: 40%;
  top: 45%;
  margin: 0;
}
/* 
COLORS
*/
#stacks_in_5386 .toggle-this.ts-3:after,
#stacks_in_5386 .toggle-this:before {
  background-color: rgba(255, 255, 255, 0.00); 
}
#stacks_in_5386 .toggle-this.ts-type-5.ts-3:after,
#stacks_in_5386 .toggle-this.ts-type-5:before {
  background-color: transparent;
}
#stacks_in_5386 .toggle-this .label-bg > .right-color,
#stacks_in_5386 .toggle-this.ts-2 .label-bg,
#stacks_in_5386 .toggle-this.ts-3 .label-bg,
#stacks_in_5386 input[type="checkbox"] + .toggle-this.ts-type-5 .label-bg > .left-color {
  background-color: rgba(221, 221, 221, 1.00);
}
#stacks_in_5386 .toggle-this.ts-type-2.ts-2 label:after {
  border: 1px solid rgba(0,0,0,0.15);
} 
#stacks_in_5386 .toggle-this label:after, 
#stacks_in_5386 .toggle-this label:before {
  background-color: rgba(255, 255, 255, 1.00);
}
#stacks_in_5386 .toggle-this.ts-type-5 label:after, 
#stacks_in_5386 .toggle-this.ts-type-5 label:before {
  background-color: transparent;
}
#stacks_in_5386 .toggle-this .label-bg > .left-color,
#stacks_in_5386 input[type="checkbox"]:checked + .toggle-this.ts-2 .label-bg,
#stacks_in_5386 input[type="checkbox"]:checked + .toggle-this.ts-3 .label-bg,
#stacks_in_5386 input[type="checkbox"]:checked + .toggle-this.ts-type-5 .label-bg > .left-color {
  background-color: rgba(71, 152, 209, 1.00);
}
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .left-color > div > span, 
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .right-color > div > span {
  background-color: rgba(153, 153, 153, 1.00);
}
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .left-color > div > span,
#stacks_in_5386 .toggle-this.ts-type-3 .label-bg > .left-color > div > span:nth-child(2):after {
  background-color: rgba(255, 255, 255, 1.00);
}
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .right-color > div:after {
  color: rgba(153, 153, 153, 1.00);
}
#stacks_in_5386 .toggle-this.ts-type-4 .label-bg > .left-color > div:after {
  color: rgba(255, 255, 255, 1.00);
}
#stacks_in_5386 .toggle-this.ts-type-5 .label-bg > .left-color > div > span:nth-child(2),
#stacks_in_5386 .toggle-this.ts-type-5 .label-bg > .left-color > div > span:nth-child(2):after {
  background: rgba(255, 255, 255, 1.00);
}
#stacks_in_5386 .toggle-this.ts-type-4.ts-1 .label-bg > .right-color > div:after {
}
#stacks_in_5386 .toggle-this.ts-type-4.ts-1 .label-bg > .left-color > div:after {
}
#stacks_in_5386 .toggle-this.ts-type-4.ts-2 .label-bg > .right-color > div:after,
#stacks_in_5386 .toggle-this.ts-type-4.ts-2 .label-bg > .left-color > div:after {
  text-shadow: none;
}
/*  */
/*  */
/*  */
/*  
  TOGGLE STATES/ACTIONS
*/
/*  */
#stacks_in_5386 .toggle-this-inactive,
#stacks_in_5386 .toggle-this-active {
 display: none;
}
#stacks_in_5386 .tt-False.toggle-this-inactive {
  display: block;
}
#stacks_in_5386 .tt-True.toggle-this-active {
  display: block;
}
/*  */
/*  */
/*  */
/*  */

/*  */


#stacks_in_5389-wrapper {
	
}

#stacks_in_5389-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_5389-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_5389-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_5389-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_5389-wrapper.fdy-container {
	max-width: 960px;
  }
}











@media (max-width: 575px) {
	
}


#stacks_out_5394 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_5394 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_5394 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_5394 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_5394 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_5394 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_5394 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}





#stacks_in_5396-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5396-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5396-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5396-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_5396-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_5396-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_5398-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5398-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_5398-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5398-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_5400-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_5400-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_5400-header {
	margin-bottom: 0;
}






.stacks_in_5400-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_5400-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_5400-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_5400-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_5400-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_5400-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_5403 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_5403 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_5403 body {
    margin: 0; }
  #listify_stacks_in_5403 article, #listify_stacks_in_5403 aside, #listify_stacks_in_5403 details, #listify_stacks_in_5403 figcaption, #listify_stacks_in_5403 figure, #listify_stacks_in_5403 footer, #listify_stacks_in_5403 header, #listify_stacks_in_5403 hgroup, #listify_stacks_in_5403 main, #listify_stacks_in_5403 menu, #listify_stacks_in_5403 nav, #listify_stacks_in_5403 section, #listify_stacks_in_5403 summary {
    display: block; }
  #listify_stacks_in_5403 audio, #listify_stacks_in_5403 canvas, #listify_stacks_in_5403 progress, #listify_stacks_in_5403 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_5403 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_5403 [hidden], #listify_stacks_in_5403 template {
    display: none; }
  #listify_stacks_in_5403 a {
    background-color: transparent; }
    #listify_stacks_in_5403 a:active, #listify_stacks_in_5403 a:hover {
      outline: 0; }
  #listify_stacks_in_5403 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_5403 b, #listify_stacks_in_5403 strong {
    font-weight: bold; }
  #listify_stacks_in_5403 dfn {
    font-style: italic; }
  #listify_stacks_in_5403 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_5403 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_5403 small {
    font-size: 80%; }
  #listify_stacks_in_5403 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_5403 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_5403 sub {
    bottom: -0.25em; }
  #listify_stacks_in_5403 img {
    border: 0; }
  #listify_stacks_in_5403 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_5403 figure {
    margin: 1em 40px; }
  #listify_stacks_in_5403 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_5403 pre {
    overflow: auto; }
  #listify_stacks_in_5403 code, #listify_stacks_in_5403 kbd, #listify_stacks_in_5403 pre, #listify_stacks_in_5403 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_5403 button, #listify_stacks_in_5403 input, #listify_stacks_in_5403 optgroup, #listify_stacks_in_5403 select, #listify_stacks_in_5403 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_5403 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_5403 select {
    text-transform: none; }
  #listify_stacks_in_5403 button, #listify_stacks_in_5403 html input[type="button"], #listify_stacks_in_5403 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_5403 button[disabled], #listify_stacks_in_5403 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_5403 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_5403 input {
    line-height: normal; }
    #listify_stacks_in_5403 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_5403 input[type="checkbox"], #listify_stacks_in_5403 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_5403 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_5403 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_5403 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_5403 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_5403 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_5403 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_5403 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_5403 textarea {
    overflow: auto; }
  #listify_stacks_in_5403 optgroup {
    font-weight: bold; }
  #listify_stacks_in_5403 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_5403 td, #listify_stacks_in_5403 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_5403 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_5403 [class^="w-icon-"], #listify_stacks_in_5403 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_5403 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_5403 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_5403 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_5403 .w-icon-arrow-down:before, #listify_stacks_in_5403 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_5403 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_5403 html {
    height: 100%; }
  #listify_stacks_in_5403 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_5403 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_5403 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_5403 .w-block {
    display: block; }
  #listify_stacks_in_5403 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_5403 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5403 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5403 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_5403 .w-hidden {
    display: none; }
  #listify_stacks_in_5403 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_5403 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_5403 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_5403 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_5403 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_5403 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_5403 h1, #listify_stacks_in_5403 h2, #listify_stacks_in_5403 h3, #listify_stacks_in_5403 h4, #listify_stacks_in_5403 h5, #listify_stacks_in_5403 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_5403 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_5403 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_5403 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_5403 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_5403 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_5403 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_5403 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5403 a:focus {
    outline: 0; }
  #listify_stacks_in_5403 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_5403 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5403 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_5403 ul, #listify_stacks_in_5403 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_5403 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_5403 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5403 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5403 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_5403 .w-video iframe, #listify_stacks_in_5403 .w-video object, #listify_stacks_in_5403 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_5403 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_5403 button, #listify_stacks_in_5403 html input[type="button"], #listify_stacks_in_5403 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_5403 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_5403 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_5403 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_5403 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_5403 .w-input, #listify_stacks_in_5403 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_5403 .w-input:-moz-placeholder, #listify_stacks_in_5403 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_5403 .w-input::-moz-placeholder, #listify_stacks_in_5403 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_5403 .w-input:-ms-input-placeholder, #listify_stacks_in_5403 .w-select:-ms-input-placeholder, #listify_stacks_in_5403 .w-input::-webkit-input-placeholder, #listify_stacks_in_5403 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_5403 .w-input:focus, #listify_stacks_in_5403 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_5403 .w-input[disabled], #listify_stacks_in_5403 .w-select[disabled], #listify_stacks_in_5403 .w-input[readonly], #listify_stacks_in_5403 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5403 fieldset[disabled] .w-input, #listify_stacks_in_5403 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5403 textarea.w-input, #listify_stacks_in_5403 textarea.w-select {
    height: auto; }
  #listify_stacks_in_5403 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_5403 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_5403 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_5403 .w-checkbox, #listify_stacks_in_5403 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_5403 .w-checkbox:before, #listify_stacks_in_5403 .w-radio:before, #listify_stacks_in_5403 .w-checkbox:after, #listify_stacks_in_5403 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_5403 .w-checkbox:after, #listify_stacks_in_5403 .w-radio:after {
    clear: both; }
  #listify_stacks_in_5403 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_5403 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_5403 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_5403 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5403 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_5403 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_5403 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5403 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5403 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_5403 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_5403 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_5403 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_5403 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_5403 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_5403 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_5403 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_5403 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_5403 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_5403 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_5403 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_5403 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_5403 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_5403 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_5403 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5403 .w-container {
      max-width: 728px; }
    #listify_stacks_in_5403 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_5403 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_5403 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5403 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5403 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_5403 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5403 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5403 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_5403 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5403 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5403 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_5403 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5403 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5403 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_5403 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5403 .w-hidden-main, #listify_stacks_in_5403 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_5403 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_5403 .w-row, #listify_stacks_in_5403 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_5403 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_5403 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5403 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5403 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_5403 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5403 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5403 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_5403 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5403 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5403 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_5403 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5403 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5403 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5403 .w-container {
      max-width: none; }
    #listify_stacks_in_5403 .w-hidden-main, #listify_stacks_in_5403 .w-hidden-medium, #listify_stacks_in_5403 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_5403 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_5403 .w-col {
      width: 100%; }
    #listify_stacks_in_5403 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5403 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5403 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_5403 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5403 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5403 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_5403 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5403 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5403 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_5403 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5403 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5403 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_5403 .w-widget {
    position: relative; }
  #listify_stacks_in_5403 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_5403 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_5403 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_5403 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_5403 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_5403 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_5403 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_5403 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_5403 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_5403 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_5403 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_5403 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_5403 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_5403 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_5403 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_5403 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_5403 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_5403 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_5403 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_5403 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_5403 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_5403 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_5403 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_5403 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_5403 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_5403 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_5403 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_5403 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_5403 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_5403 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_5403 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_5403 .w-slider-arrow-left, #listify_stacks_in_5403 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_5403 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_5403 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_5403 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_5403 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_5403 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_5403 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_5403 .w-icon-slider-left, #listify_stacks_in_5403 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5403 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_5403 .w-dropdown-btn, #listify_stacks_in_5403 .w-dropdown-toggle, #listify_stacks_in_5403 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_5403 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_5403 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_5403 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5403 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_5403 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_5403 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_5403 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5403 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_5403 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_5403 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5403 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_5403 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5403 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5403 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_5403 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5403 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_5403 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5403 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_5403 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5403 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_5403 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5403 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5403 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_5403 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_5403 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_5403 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_5403 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_5403 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_5403 .w-lightbox-frame, #listify_stacks_in_5403 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_5403 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_5403 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_5403 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_5403 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_5403 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_5403 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_5403 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_5403 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_5403 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_5403 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_5403 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_5403 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_5403 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_5403 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_5403 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_5403 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_5403 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_5403 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_5403 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_5403 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_5403 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_5403 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_5403 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_5403 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_5403 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_5403 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_5403 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_5403 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_5403 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_5403 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_5403 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_5403 .w-lightbox-left, #listify_stacks_in_5403 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_5403 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_5403 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_5403 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_5403 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_5403 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5403 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5403 .w-richtext ol, #listify_stacks_in_5403 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_5403 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_5403 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_5403 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_5403 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_5403 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_5403 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_5403 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_5403 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_5403 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_5403 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_5403 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_5403 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_5403 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_5403 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_5403 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_5403 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_5403 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_5403 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_5403 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_5403 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_5403 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_5403 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_5403 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5403 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5403 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_5403 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_5403 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5403 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_5403 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_5403 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_5403 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_5403 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_5403 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5403 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5403 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5403 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5403 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_5403 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_5403 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_5403 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5403 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5403 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5403 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5403 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_5403 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5403 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5403 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_5403 .w-tabs {
    position: relative; }
    #listify_stacks_in_5403 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5403 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5403 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_5403 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_5403 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_5403 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_5403 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_5403 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5403 .w-tab-link {
      display: block; } }
  #listify_stacks_in_5403 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_5403 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_5403 .w-dyn-bind-empty, #listify_stacks_in_5403 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_5403 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_5403 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5403 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_5403 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5403 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5403 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5403 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5403 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5403 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5403 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5403 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5403 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5403 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5403 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_5403 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5403 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5403 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_5403 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_5403 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5403 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_5403 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_5403.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_5403.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_5403.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5404.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5404.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5404.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5404.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5404.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5404.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5404.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5404.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5404.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5404.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5404.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5404.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5406.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5406.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5406.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5406.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5406.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5406.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5406.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5406.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5406.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5406.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5406.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5406.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5408.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5408.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5408.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5408.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5408.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5408.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5408.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5408.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5408.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5408.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5408.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5408.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5410.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5410.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5410.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5410.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5410.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5410.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5410.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5410.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5410.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5410.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5410.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5410.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5412.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5412.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5412.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5412.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5412.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5412.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5412.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5412.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5412.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5412.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5412.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5412.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5413.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5413.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5413.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5413.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5413.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5413.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5413.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5413.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5413.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5413.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5413.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5413.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5414.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5414.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5414.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5414.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5414.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5414.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5414.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5414.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5414.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5414.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5414.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5414.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5415.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5415.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5415.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5415.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5415.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5415.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5415.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5415.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5415.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5415.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5415.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5415.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5416.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5416.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5416.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5416.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5416.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5416.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5416.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5416.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5416.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5416.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5416.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5416.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5417.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5417.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5417.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5417.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5417.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5417.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5417.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5417.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5417.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5417.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5417.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5417.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5418.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5418.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5418.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5418.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5418.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5418.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5418.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5418.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5418.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5418.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5418.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5418.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5419.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5419.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5419.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5419.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5419.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5419.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5419.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5419.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5419.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5419.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5419.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5419.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5420.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5420.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5420.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5420.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5420.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5420.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5420.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5420.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5420.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5420.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5420.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5420.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5421.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5421.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5421.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5421.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5421.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5421.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5421.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5421.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 11px;
    line-height: 17px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5421.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5421.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5421.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5421.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5422.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5422.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5422.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5422.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5422.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5422.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5422.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5422.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5422.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5422.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5422.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5422.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5423.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5423.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5423.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5423.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5423.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5423.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5423.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5423.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5423.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5423.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5423.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5423.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5424.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5424.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5424.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5424.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5424.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5424.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5424.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5424.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5424.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5424.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5424.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5424.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5425.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5425.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5425.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5425.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5425.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5425.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5425.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5425.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5425.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5425.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5425.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5425.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5426.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5426.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5426.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5426.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5426.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5426.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5426.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5426.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5426.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5426.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5426.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5426.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5428.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5428.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5428.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5428.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5428.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5428.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5428.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5428.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5428.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5428.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5428.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5428.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5429.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5429.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5429.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5429.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5429.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5429.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5429.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5429.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5429.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5429.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5429.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5429.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5430.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5430.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5430.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5430.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5430.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5430.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5430.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5430.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5430.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5430.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5430.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5430.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5431.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5431.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5431.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5431.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5431.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5431.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5431.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5431.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5431.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5431.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5431.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5431.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5432.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5432.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5432.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5432.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5432.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5432.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5432.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5432.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5432.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5432.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5432.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5432.hide-d {
    display: none; } }

/*  */


#stacks_out_5434 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_5434 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_5434 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_5434 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_5434 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_5434 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_5434 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}







#stacks_in_5438-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5438-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5438-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5438-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_5438-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_5438-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_5440-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5440-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_5440-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5440-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_5442-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_5442-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_5442-header {
	margin-bottom: 0;
}






.stacks_in_5442-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_5442-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_5442-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_5442-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_5442-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_5442-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_5444 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_5444 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_5444 body {
    margin: 0; }
  #listify_stacks_in_5444 article, #listify_stacks_in_5444 aside, #listify_stacks_in_5444 details, #listify_stacks_in_5444 figcaption, #listify_stacks_in_5444 figure, #listify_stacks_in_5444 footer, #listify_stacks_in_5444 header, #listify_stacks_in_5444 hgroup, #listify_stacks_in_5444 main, #listify_stacks_in_5444 menu, #listify_stacks_in_5444 nav, #listify_stacks_in_5444 section, #listify_stacks_in_5444 summary {
    display: block; }
  #listify_stacks_in_5444 audio, #listify_stacks_in_5444 canvas, #listify_stacks_in_5444 progress, #listify_stacks_in_5444 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_5444 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_5444 [hidden], #listify_stacks_in_5444 template {
    display: none; }
  #listify_stacks_in_5444 a {
    background-color: transparent; }
    #listify_stacks_in_5444 a:active, #listify_stacks_in_5444 a:hover {
      outline: 0; }
  #listify_stacks_in_5444 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_5444 b, #listify_stacks_in_5444 strong {
    font-weight: bold; }
  #listify_stacks_in_5444 dfn {
    font-style: italic; }
  #listify_stacks_in_5444 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_5444 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_5444 small {
    font-size: 80%; }
  #listify_stacks_in_5444 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_5444 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_5444 sub {
    bottom: -0.25em; }
  #listify_stacks_in_5444 img {
    border: 0; }
  #listify_stacks_in_5444 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_5444 figure {
    margin: 1em 40px; }
  #listify_stacks_in_5444 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_5444 pre {
    overflow: auto; }
  #listify_stacks_in_5444 code, #listify_stacks_in_5444 kbd, #listify_stacks_in_5444 pre, #listify_stacks_in_5444 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_5444 button, #listify_stacks_in_5444 input, #listify_stacks_in_5444 optgroup, #listify_stacks_in_5444 select, #listify_stacks_in_5444 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_5444 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_5444 select {
    text-transform: none; }
  #listify_stacks_in_5444 button, #listify_stacks_in_5444 html input[type="button"], #listify_stacks_in_5444 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_5444 button[disabled], #listify_stacks_in_5444 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_5444 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_5444 input {
    line-height: normal; }
    #listify_stacks_in_5444 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_5444 input[type="checkbox"], #listify_stacks_in_5444 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_5444 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_5444 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_5444 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_5444 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_5444 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_5444 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_5444 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_5444 textarea {
    overflow: auto; }
  #listify_stacks_in_5444 optgroup {
    font-weight: bold; }
  #listify_stacks_in_5444 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_5444 td, #listify_stacks_in_5444 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_5444 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_5444 [class^="w-icon-"], #listify_stacks_in_5444 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_5444 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_5444 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_5444 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_5444 .w-icon-arrow-down:before, #listify_stacks_in_5444 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_5444 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_5444 html {
    height: 100%; }
  #listify_stacks_in_5444 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_5444 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_5444 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_5444 .w-block {
    display: block; }
  #listify_stacks_in_5444 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_5444 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5444 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5444 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_5444 .w-hidden {
    display: none; }
  #listify_stacks_in_5444 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_5444 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_5444 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_5444 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_5444 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_5444 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_5444 h1, #listify_stacks_in_5444 h2, #listify_stacks_in_5444 h3, #listify_stacks_in_5444 h4, #listify_stacks_in_5444 h5, #listify_stacks_in_5444 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_5444 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_5444 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_5444 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_5444 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_5444 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_5444 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_5444 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5444 a:focus {
    outline: 0; }
  #listify_stacks_in_5444 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_5444 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5444 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_5444 ul, #listify_stacks_in_5444 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_5444 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_5444 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5444 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5444 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_5444 .w-video iframe, #listify_stacks_in_5444 .w-video object, #listify_stacks_in_5444 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_5444 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_5444 button, #listify_stacks_in_5444 html input[type="button"], #listify_stacks_in_5444 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_5444 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_5444 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_5444 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_5444 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_5444 .w-input, #listify_stacks_in_5444 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_5444 .w-input:-moz-placeholder, #listify_stacks_in_5444 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_5444 .w-input::-moz-placeholder, #listify_stacks_in_5444 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_5444 .w-input:-ms-input-placeholder, #listify_stacks_in_5444 .w-select:-ms-input-placeholder, #listify_stacks_in_5444 .w-input::-webkit-input-placeholder, #listify_stacks_in_5444 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_5444 .w-input:focus, #listify_stacks_in_5444 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_5444 .w-input[disabled], #listify_stacks_in_5444 .w-select[disabled], #listify_stacks_in_5444 .w-input[readonly], #listify_stacks_in_5444 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5444 fieldset[disabled] .w-input, #listify_stacks_in_5444 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5444 textarea.w-input, #listify_stacks_in_5444 textarea.w-select {
    height: auto; }
  #listify_stacks_in_5444 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_5444 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_5444 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_5444 .w-checkbox, #listify_stacks_in_5444 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_5444 .w-checkbox:before, #listify_stacks_in_5444 .w-radio:before, #listify_stacks_in_5444 .w-checkbox:after, #listify_stacks_in_5444 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_5444 .w-checkbox:after, #listify_stacks_in_5444 .w-radio:after {
    clear: both; }
  #listify_stacks_in_5444 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_5444 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_5444 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_5444 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5444 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_5444 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_5444 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5444 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5444 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_5444 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_5444 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_5444 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_5444 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_5444 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_5444 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_5444 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_5444 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_5444 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_5444 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_5444 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_5444 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_5444 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_5444 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_5444 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5444 .w-container {
      max-width: 728px; }
    #listify_stacks_in_5444 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_5444 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_5444 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5444 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5444 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_5444 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5444 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5444 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_5444 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5444 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5444 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_5444 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5444 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5444 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_5444 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5444 .w-hidden-main, #listify_stacks_in_5444 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_5444 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_5444 .w-row, #listify_stacks_in_5444 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_5444 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_5444 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5444 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5444 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_5444 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5444 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5444 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_5444 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5444 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5444 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_5444 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5444 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5444 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5444 .w-container {
      max-width: none; }
    #listify_stacks_in_5444 .w-hidden-main, #listify_stacks_in_5444 .w-hidden-medium, #listify_stacks_in_5444 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_5444 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_5444 .w-col {
      width: 100%; }
    #listify_stacks_in_5444 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5444 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5444 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_5444 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5444 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5444 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_5444 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5444 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5444 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_5444 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5444 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5444 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_5444 .w-widget {
    position: relative; }
  #listify_stacks_in_5444 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_5444 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_5444 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_5444 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_5444 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_5444 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_5444 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_5444 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_5444 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_5444 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_5444 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_5444 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_5444 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_5444 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_5444 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_5444 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_5444 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_5444 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_5444 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_5444 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_5444 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_5444 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_5444 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_5444 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_5444 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_5444 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_5444 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_5444 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_5444 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_5444 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_5444 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_5444 .w-slider-arrow-left, #listify_stacks_in_5444 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_5444 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_5444 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_5444 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_5444 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_5444 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_5444 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_5444 .w-icon-slider-left, #listify_stacks_in_5444 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5444 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_5444 .w-dropdown-btn, #listify_stacks_in_5444 .w-dropdown-toggle, #listify_stacks_in_5444 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_5444 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_5444 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_5444 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5444 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_5444 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_5444 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_5444 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5444 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_5444 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_5444 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5444 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_5444 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5444 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5444 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_5444 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5444 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_5444 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5444 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_5444 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5444 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_5444 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5444 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5444 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_5444 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_5444 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_5444 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_5444 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_5444 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_5444 .w-lightbox-frame, #listify_stacks_in_5444 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_5444 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_5444 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_5444 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_5444 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_5444 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_5444 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_5444 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_5444 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_5444 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_5444 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_5444 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_5444 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_5444 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_5444 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_5444 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_5444 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_5444 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_5444 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_5444 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_5444 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_5444 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_5444 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_5444 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_5444 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_5444 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_5444 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_5444 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_5444 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_5444 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_5444 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_5444 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_5444 .w-lightbox-left, #listify_stacks_in_5444 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_5444 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_5444 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_5444 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_5444 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_5444 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5444 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5444 .w-richtext ol, #listify_stacks_in_5444 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_5444 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_5444 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_5444 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_5444 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_5444 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_5444 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_5444 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_5444 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_5444 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_5444 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_5444 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_5444 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_5444 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_5444 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_5444 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_5444 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_5444 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_5444 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_5444 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_5444 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_5444 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_5444 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_5444 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5444 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5444 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_5444 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_5444 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5444 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_5444 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_5444 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_5444 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_5444 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_5444 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5444 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5444 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5444 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5444 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_5444 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_5444 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_5444 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5444 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5444 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5444 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5444 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_5444 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5444 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5444 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_5444 .w-tabs {
    position: relative; }
    #listify_stacks_in_5444 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5444 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5444 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_5444 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_5444 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_5444 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_5444 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_5444 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5444 .w-tab-link {
      display: block; } }
  #listify_stacks_in_5444 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_5444 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_5444 .w-dyn-bind-empty, #listify_stacks_in_5444 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_5444 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_5444 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5444 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_5444 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5444 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5444 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5444 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5444 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5444 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5444 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5444 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5444 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5444 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5444 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_5444 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5444 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5444 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_5444 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_5444 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5444 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_5444 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_5444.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_5444.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_5444.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5445.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5445.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5445.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5445.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5445.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5445.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5445.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5445.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5445.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5445.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5445.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5445.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5447.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5447.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5447.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5447.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5447.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5447.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5447.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5447.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5447.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5447.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5447.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5447.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5448.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5448.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5448.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5448.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5448.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5448.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5448.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5448.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5448.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5448.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5448.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5448.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5449.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5449.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5449.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5449.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5449.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5449.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5449.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5449.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5449.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5449.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5449.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5449.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5450.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5450.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5450.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5450.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5450.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5450.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5450.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5450.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5450.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5450.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5450.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5450.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5451.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5451.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5451.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5451.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5451.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5451.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5451.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5451.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5451.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5451.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5451.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5451.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5452.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5452.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5452.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5452.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5452.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5452.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(84, 191, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5452.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5452.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5452.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5452.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5452.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5452.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5453.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5453.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5453.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5453.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5453.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5453.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5453.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5453.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5453.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5453.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5453.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5453.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5454.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5454.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5454.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5454.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5454.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5454.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(84, 191, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5454.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5454.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5454.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5454.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5454.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5454.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5455.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5455.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5455.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5455.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5455.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5455.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5455.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5455.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5455.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5455.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5455.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5455.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5456.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5456.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5456.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5456.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5456.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5456.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5456.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5456.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5456.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5456.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5456.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5456.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5457.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5457.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5457.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5457.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5457.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5457.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5457.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5457.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5457.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5457.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5457.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5457.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5458.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5458.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5458.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5458.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5458.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5458.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5458.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5458.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5458.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5458.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5458.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5458.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5459.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5459.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5459.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5459.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5459.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5459.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5459.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5459.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5459.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5459.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5459.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5459.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5460.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5460.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5460.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5460.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5460.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5460.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5460.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5460.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5460.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5460.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5460.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5460.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5461.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5461.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5461.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5461.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5461.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5461.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5461.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5461.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5461.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5461.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5461.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5461.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5462.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5462.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5462.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5462.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5462.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5462.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5462.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5462.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5462.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5462.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5462.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5462.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5463.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5463.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5463.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5463.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5463.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5463.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5463.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5463.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5463.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5463.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5463.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5463.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5464.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5464.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5464.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5464.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5464.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5464.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5464.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5464.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5464.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5464.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5464.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5464.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5465.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5465.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5465.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5465.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5465.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5465.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5465.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5465.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5465.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5465.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5465.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5465.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5466.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5466.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5466.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5466.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5466.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5466.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5466.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5466.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5466.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5466.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5466.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5466.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5467.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5467.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5467.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5467.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5467.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5467.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5467.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5467.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5467.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5467.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5467.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5467.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5468.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5468.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5468.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5468.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5468.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5468.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5468.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5468.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5468.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5468.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5468.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5468.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5469.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5469.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5469.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5469.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5469.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5469.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5469.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5469.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5469.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5469.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5469.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5469.hide-d {
    display: none; } }

/*  */


#stacks_out_5471 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_5471 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_5471 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_5471 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_5471 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_5471 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_5471 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}







#stacks_in_5475-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5475-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5475-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5475-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_5475-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_5475-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_5477-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5477-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_5477-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5477-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_5479-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_5479-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_5479-header {
	margin-bottom: 0;
}






.stacks_in_5479-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_5479-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_5479-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_5479-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_5479-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_5479-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_5481 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_5481 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_5481 body {
    margin: 0; }
  #listify_stacks_in_5481 article, #listify_stacks_in_5481 aside, #listify_stacks_in_5481 details, #listify_stacks_in_5481 figcaption, #listify_stacks_in_5481 figure, #listify_stacks_in_5481 footer, #listify_stacks_in_5481 header, #listify_stacks_in_5481 hgroup, #listify_stacks_in_5481 main, #listify_stacks_in_5481 menu, #listify_stacks_in_5481 nav, #listify_stacks_in_5481 section, #listify_stacks_in_5481 summary {
    display: block; }
  #listify_stacks_in_5481 audio, #listify_stacks_in_5481 canvas, #listify_stacks_in_5481 progress, #listify_stacks_in_5481 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_5481 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_5481 [hidden], #listify_stacks_in_5481 template {
    display: none; }
  #listify_stacks_in_5481 a {
    background-color: transparent; }
    #listify_stacks_in_5481 a:active, #listify_stacks_in_5481 a:hover {
      outline: 0; }
  #listify_stacks_in_5481 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_5481 b, #listify_stacks_in_5481 strong {
    font-weight: bold; }
  #listify_stacks_in_5481 dfn {
    font-style: italic; }
  #listify_stacks_in_5481 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_5481 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_5481 small {
    font-size: 80%; }
  #listify_stacks_in_5481 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_5481 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_5481 sub {
    bottom: -0.25em; }
  #listify_stacks_in_5481 img {
    border: 0; }
  #listify_stacks_in_5481 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_5481 figure {
    margin: 1em 40px; }
  #listify_stacks_in_5481 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_5481 pre {
    overflow: auto; }
  #listify_stacks_in_5481 code, #listify_stacks_in_5481 kbd, #listify_stacks_in_5481 pre, #listify_stacks_in_5481 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_5481 button, #listify_stacks_in_5481 input, #listify_stacks_in_5481 optgroup, #listify_stacks_in_5481 select, #listify_stacks_in_5481 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_5481 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_5481 select {
    text-transform: none; }
  #listify_stacks_in_5481 button, #listify_stacks_in_5481 html input[type="button"], #listify_stacks_in_5481 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_5481 button[disabled], #listify_stacks_in_5481 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_5481 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_5481 input {
    line-height: normal; }
    #listify_stacks_in_5481 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_5481 input[type="checkbox"], #listify_stacks_in_5481 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_5481 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_5481 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_5481 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_5481 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_5481 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_5481 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_5481 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_5481 textarea {
    overflow: auto; }
  #listify_stacks_in_5481 optgroup {
    font-weight: bold; }
  #listify_stacks_in_5481 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_5481 td, #listify_stacks_in_5481 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_5481 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_5481 [class^="w-icon-"], #listify_stacks_in_5481 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_5481 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_5481 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_5481 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_5481 .w-icon-arrow-down:before, #listify_stacks_in_5481 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_5481 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_5481 html {
    height: 100%; }
  #listify_stacks_in_5481 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_5481 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_5481 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_5481 .w-block {
    display: block; }
  #listify_stacks_in_5481 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_5481 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5481 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5481 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_5481 .w-hidden {
    display: none; }
  #listify_stacks_in_5481 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_5481 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_5481 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_5481 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_5481 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_5481 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_5481 h1, #listify_stacks_in_5481 h2, #listify_stacks_in_5481 h3, #listify_stacks_in_5481 h4, #listify_stacks_in_5481 h5, #listify_stacks_in_5481 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_5481 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_5481 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_5481 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_5481 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_5481 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_5481 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_5481 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5481 a:focus {
    outline: 0; }
  #listify_stacks_in_5481 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_5481 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5481 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_5481 ul, #listify_stacks_in_5481 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_5481 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_5481 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5481 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5481 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_5481 .w-video iframe, #listify_stacks_in_5481 .w-video object, #listify_stacks_in_5481 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_5481 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_5481 button, #listify_stacks_in_5481 html input[type="button"], #listify_stacks_in_5481 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_5481 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_5481 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_5481 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_5481 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_5481 .w-input, #listify_stacks_in_5481 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_5481 .w-input:-moz-placeholder, #listify_stacks_in_5481 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_5481 .w-input::-moz-placeholder, #listify_stacks_in_5481 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_5481 .w-input:-ms-input-placeholder, #listify_stacks_in_5481 .w-select:-ms-input-placeholder, #listify_stacks_in_5481 .w-input::-webkit-input-placeholder, #listify_stacks_in_5481 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_5481 .w-input:focus, #listify_stacks_in_5481 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_5481 .w-input[disabled], #listify_stacks_in_5481 .w-select[disabled], #listify_stacks_in_5481 .w-input[readonly], #listify_stacks_in_5481 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5481 fieldset[disabled] .w-input, #listify_stacks_in_5481 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5481 textarea.w-input, #listify_stacks_in_5481 textarea.w-select {
    height: auto; }
  #listify_stacks_in_5481 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_5481 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_5481 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_5481 .w-checkbox, #listify_stacks_in_5481 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_5481 .w-checkbox:before, #listify_stacks_in_5481 .w-radio:before, #listify_stacks_in_5481 .w-checkbox:after, #listify_stacks_in_5481 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_5481 .w-checkbox:after, #listify_stacks_in_5481 .w-radio:after {
    clear: both; }
  #listify_stacks_in_5481 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_5481 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_5481 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_5481 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5481 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_5481 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_5481 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5481 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5481 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_5481 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_5481 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_5481 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_5481 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_5481 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_5481 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_5481 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_5481 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_5481 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_5481 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_5481 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_5481 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_5481 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_5481 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_5481 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5481 .w-container {
      max-width: 728px; }
    #listify_stacks_in_5481 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_5481 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_5481 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5481 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5481 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_5481 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5481 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5481 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_5481 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5481 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5481 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_5481 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5481 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5481 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_5481 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5481 .w-hidden-main, #listify_stacks_in_5481 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_5481 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_5481 .w-row, #listify_stacks_in_5481 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_5481 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_5481 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5481 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5481 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_5481 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5481 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5481 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_5481 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5481 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5481 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_5481 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5481 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5481 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5481 .w-container {
      max-width: none; }
    #listify_stacks_in_5481 .w-hidden-main, #listify_stacks_in_5481 .w-hidden-medium, #listify_stacks_in_5481 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_5481 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_5481 .w-col {
      width: 100%; }
    #listify_stacks_in_5481 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5481 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5481 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_5481 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5481 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5481 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_5481 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5481 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5481 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_5481 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5481 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5481 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_5481 .w-widget {
    position: relative; }
  #listify_stacks_in_5481 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_5481 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_5481 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_5481 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_5481 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_5481 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_5481 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_5481 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_5481 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_5481 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_5481 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_5481 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_5481 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_5481 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_5481 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_5481 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_5481 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_5481 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_5481 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_5481 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_5481 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_5481 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_5481 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_5481 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_5481 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_5481 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_5481 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_5481 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_5481 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_5481 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_5481 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_5481 .w-slider-arrow-left, #listify_stacks_in_5481 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_5481 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_5481 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_5481 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_5481 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_5481 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_5481 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_5481 .w-icon-slider-left, #listify_stacks_in_5481 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5481 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_5481 .w-dropdown-btn, #listify_stacks_in_5481 .w-dropdown-toggle, #listify_stacks_in_5481 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_5481 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_5481 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_5481 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5481 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_5481 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_5481 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_5481 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5481 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_5481 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_5481 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5481 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_5481 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5481 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5481 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_5481 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5481 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_5481 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5481 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_5481 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5481 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_5481 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5481 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5481 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_5481 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_5481 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_5481 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_5481 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_5481 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_5481 .w-lightbox-frame, #listify_stacks_in_5481 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_5481 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_5481 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_5481 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_5481 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_5481 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_5481 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_5481 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_5481 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_5481 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_5481 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_5481 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_5481 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_5481 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_5481 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_5481 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_5481 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_5481 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_5481 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_5481 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_5481 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_5481 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_5481 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_5481 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_5481 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_5481 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_5481 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_5481 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_5481 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_5481 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_5481 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_5481 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_5481 .w-lightbox-left, #listify_stacks_in_5481 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_5481 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_5481 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_5481 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_5481 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_5481 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5481 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5481 .w-richtext ol, #listify_stacks_in_5481 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_5481 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_5481 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_5481 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_5481 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_5481 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_5481 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_5481 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_5481 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_5481 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_5481 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_5481 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_5481 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_5481 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_5481 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_5481 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_5481 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_5481 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_5481 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_5481 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_5481 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_5481 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_5481 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_5481 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5481 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5481 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_5481 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_5481 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5481 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_5481 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_5481 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_5481 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_5481 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_5481 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5481 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5481 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5481 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5481 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_5481 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_5481 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_5481 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5481 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5481 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5481 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5481 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_5481 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5481 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5481 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_5481 .w-tabs {
    position: relative; }
    #listify_stacks_in_5481 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5481 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5481 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_5481 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_5481 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_5481 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_5481 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_5481 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5481 .w-tab-link {
      display: block; } }
  #listify_stacks_in_5481 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_5481 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_5481 .w-dyn-bind-empty, #listify_stacks_in_5481 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_5481 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_5481 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5481 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_5481 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5481 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5481 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5481 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5481 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5481 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5481 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5481 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5481 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5481 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5481 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_5481 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5481 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5481 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_5481 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_5481 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5481 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_5481 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_5481.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_5481.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_5481.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5482.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5482.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5482.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5482.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5482.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5482.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5482.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5482.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5482.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5482.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5482.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5482.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5484.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5484.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5484.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5484.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5484.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5484.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5484.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5484.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5484.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5484.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5484.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5484.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5485.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5485.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5485.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5485.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5485.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5485.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5485.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5485.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5485.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5485.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5485.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5485.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5486.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5486.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5486.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5486.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5486.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5486.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5486.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5486.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5486.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5486.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5486.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5486.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5487.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5487.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5487.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5487.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5487.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5487.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5487.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5487.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5487.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5487.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5487.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5487.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5488.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5488.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5488.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5488.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5488.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5488.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5488.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5488.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 11px;
    line-height: 17px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5488.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5488.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5488.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5488.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5489.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5489.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5489.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5489.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5489.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5489.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5489.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5489.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5489.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5489.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5489.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5489.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5491.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5491.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5491.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5491.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5491.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5491.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5491.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5491.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5491.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5491.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5491.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5491.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5492.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5492.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5492.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5492.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5492.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5492.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5492.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5492.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5492.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5492.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5492.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5492.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5493.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5493.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5493.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5493.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5493.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5493.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5493.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5493.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5493.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5493.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5493.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5493.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5494.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5494.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5494.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5494.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5494.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5494.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5494.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5494.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5494.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5494.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5494.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5494.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5495.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5495.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5495.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5495.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5495.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5495.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5495.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5495.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5495.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5495.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5495.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5495.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5496.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5496.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5496.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5496.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5496.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5496.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5496.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5496.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5496.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5496.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5496.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5496.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5497.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5497.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5497.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5497.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5497.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5497.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5497.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5497.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5497.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5497.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5497.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5497.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5498.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5498.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5498.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5498.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5498.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5498.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5498.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5498.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5498.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5498.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5498.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5498.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5499.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5499.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5499.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5499.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5499.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5499.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5499.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5499.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5499.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5499.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5499.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5499.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5500.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5500.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5500.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5500.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5500.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5500.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5500.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5500.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5500.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5500.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5500.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5500.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5501.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5501.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5501.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5501.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5501.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5501.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5501.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5501.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5501.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5501.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5501.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5501.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5502.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5502.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5502.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5502.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5502.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5502.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5502.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5502.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5502.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5502.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5502.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5502.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5503.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5503.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5503.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5503.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5503.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5503.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5503.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5503.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5503.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5503.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5503.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5503.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5504.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5504.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5504.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5504.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5504.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5504.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5504.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5504.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5504.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5504.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5504.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5504.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5505.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5505.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5505.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5505.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5505.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5505.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5505.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5505.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5505.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5505.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5505.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5505.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5506.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5506.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5506.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5506.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5506.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5506.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5506.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5506.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5506.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5506.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5506.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5506.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5507.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5507.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5507.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5507.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5507.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5507.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5507.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5507.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5507.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5507.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5507.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5507.hide-d {
    display: none; } }

/*  */


#stacks_in_4964 .trigger_myID {
	cursor: pointer;
	display: inline-block;
	color: #515151;

	
	font-size: 26px;
	line-height: 26px;
	

	padding-left: 1px;
}

#stacks_in_4964 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_4964 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_4964 .toggle_open .closed_image {
	display: none;
}

#stacks_in_4964 .toggle_closed .open_image {
	display: none;
}



#stacks_in_4964 {
	position: relative;
	text-align: center;
}

#stacks_in_4964 .trigger_label,
#stacks_in_4964 .trigger_label_open {
	font-size: 18px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 26px;
	vertical-align: top;
	
}

#stacks_in_4964 .trigger_label_open {
	display: none;
}

#stacks_in_5579 {
	position: relative;
	display: block;
}

.myID {
	position: relative;
	
	
}






	
	#stacks_in_5579 .cpsl_myID {
		padding: 0px;
	}
	







#stacks_in_5580-wrapper {
	
}

#stacks_in_5580-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_5580-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_5580-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_5580-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_5580-wrapper.fdy-container {
	max-width: 960px;
  }
}











@media (max-width: 575px) {
	
}


#stacks_out_5586 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_5586 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_5586 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_5586 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_5586 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_5586 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_5586 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}





#stacks_in_5588-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5588-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5588-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5588-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_5588-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_5588-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_5590-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5590-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_5590-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5590-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_5592-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_5592-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_5592-header {
	margin-bottom: 0;
}






.stacks_in_5592-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_5592-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_5592-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_5592-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_5592-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_5592-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_5595 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_5595 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_5595 body {
    margin: 0; }
  #listify_stacks_in_5595 article, #listify_stacks_in_5595 aside, #listify_stacks_in_5595 details, #listify_stacks_in_5595 figcaption, #listify_stacks_in_5595 figure, #listify_stacks_in_5595 footer, #listify_stacks_in_5595 header, #listify_stacks_in_5595 hgroup, #listify_stacks_in_5595 main, #listify_stacks_in_5595 menu, #listify_stacks_in_5595 nav, #listify_stacks_in_5595 section, #listify_stacks_in_5595 summary {
    display: block; }
  #listify_stacks_in_5595 audio, #listify_stacks_in_5595 canvas, #listify_stacks_in_5595 progress, #listify_stacks_in_5595 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_5595 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_5595 [hidden], #listify_stacks_in_5595 template {
    display: none; }
  #listify_stacks_in_5595 a {
    background-color: transparent; }
    #listify_stacks_in_5595 a:active, #listify_stacks_in_5595 a:hover {
      outline: 0; }
  #listify_stacks_in_5595 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_5595 b, #listify_stacks_in_5595 strong {
    font-weight: bold; }
  #listify_stacks_in_5595 dfn {
    font-style: italic; }
  #listify_stacks_in_5595 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_5595 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_5595 small {
    font-size: 80%; }
  #listify_stacks_in_5595 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_5595 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_5595 sub {
    bottom: -0.25em; }
  #listify_stacks_in_5595 img {
    border: 0; }
  #listify_stacks_in_5595 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_5595 figure {
    margin: 1em 40px; }
  #listify_stacks_in_5595 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_5595 pre {
    overflow: auto; }
  #listify_stacks_in_5595 code, #listify_stacks_in_5595 kbd, #listify_stacks_in_5595 pre, #listify_stacks_in_5595 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_5595 button, #listify_stacks_in_5595 input, #listify_stacks_in_5595 optgroup, #listify_stacks_in_5595 select, #listify_stacks_in_5595 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_5595 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_5595 select {
    text-transform: none; }
  #listify_stacks_in_5595 button, #listify_stacks_in_5595 html input[type="button"], #listify_stacks_in_5595 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_5595 button[disabled], #listify_stacks_in_5595 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_5595 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_5595 input {
    line-height: normal; }
    #listify_stacks_in_5595 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_5595 input[type="checkbox"], #listify_stacks_in_5595 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_5595 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_5595 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_5595 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_5595 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_5595 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_5595 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_5595 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_5595 textarea {
    overflow: auto; }
  #listify_stacks_in_5595 optgroup {
    font-weight: bold; }
  #listify_stacks_in_5595 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_5595 td, #listify_stacks_in_5595 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_5595 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_5595 [class^="w-icon-"], #listify_stacks_in_5595 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_5595 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_5595 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_5595 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_5595 .w-icon-arrow-down:before, #listify_stacks_in_5595 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_5595 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_5595 html {
    height: 100%; }
  #listify_stacks_in_5595 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_5595 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_5595 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_5595 .w-block {
    display: block; }
  #listify_stacks_in_5595 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_5595 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5595 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5595 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_5595 .w-hidden {
    display: none; }
  #listify_stacks_in_5595 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_5595 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_5595 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_5595 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_5595 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_5595 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_5595 h1, #listify_stacks_in_5595 h2, #listify_stacks_in_5595 h3, #listify_stacks_in_5595 h4, #listify_stacks_in_5595 h5, #listify_stacks_in_5595 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_5595 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_5595 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_5595 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_5595 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_5595 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_5595 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_5595 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5595 a:focus {
    outline: 0; }
  #listify_stacks_in_5595 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_5595 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5595 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_5595 ul, #listify_stacks_in_5595 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_5595 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_5595 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5595 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5595 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_5595 .w-video iframe, #listify_stacks_in_5595 .w-video object, #listify_stacks_in_5595 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_5595 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_5595 button, #listify_stacks_in_5595 html input[type="button"], #listify_stacks_in_5595 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_5595 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_5595 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_5595 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_5595 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_5595 .w-input, #listify_stacks_in_5595 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_5595 .w-input:-moz-placeholder, #listify_stacks_in_5595 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_5595 .w-input::-moz-placeholder, #listify_stacks_in_5595 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_5595 .w-input:-ms-input-placeholder, #listify_stacks_in_5595 .w-select:-ms-input-placeholder, #listify_stacks_in_5595 .w-input::-webkit-input-placeholder, #listify_stacks_in_5595 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_5595 .w-input:focus, #listify_stacks_in_5595 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_5595 .w-input[disabled], #listify_stacks_in_5595 .w-select[disabled], #listify_stacks_in_5595 .w-input[readonly], #listify_stacks_in_5595 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5595 fieldset[disabled] .w-input, #listify_stacks_in_5595 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5595 textarea.w-input, #listify_stacks_in_5595 textarea.w-select {
    height: auto; }
  #listify_stacks_in_5595 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_5595 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_5595 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_5595 .w-checkbox, #listify_stacks_in_5595 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_5595 .w-checkbox:before, #listify_stacks_in_5595 .w-radio:before, #listify_stacks_in_5595 .w-checkbox:after, #listify_stacks_in_5595 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_5595 .w-checkbox:after, #listify_stacks_in_5595 .w-radio:after {
    clear: both; }
  #listify_stacks_in_5595 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_5595 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_5595 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_5595 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5595 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_5595 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_5595 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5595 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5595 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_5595 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_5595 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_5595 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_5595 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_5595 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_5595 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_5595 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_5595 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_5595 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_5595 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_5595 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_5595 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_5595 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_5595 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_5595 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5595 .w-container {
      max-width: 728px; }
    #listify_stacks_in_5595 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_5595 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_5595 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5595 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5595 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_5595 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5595 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5595 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_5595 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5595 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5595 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_5595 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5595 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5595 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_5595 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5595 .w-hidden-main, #listify_stacks_in_5595 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_5595 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_5595 .w-row, #listify_stacks_in_5595 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_5595 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_5595 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5595 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5595 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_5595 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5595 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5595 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_5595 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5595 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5595 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_5595 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5595 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5595 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5595 .w-container {
      max-width: none; }
    #listify_stacks_in_5595 .w-hidden-main, #listify_stacks_in_5595 .w-hidden-medium, #listify_stacks_in_5595 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_5595 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_5595 .w-col {
      width: 100%; }
    #listify_stacks_in_5595 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5595 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5595 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_5595 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5595 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5595 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_5595 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5595 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5595 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_5595 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5595 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5595 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_5595 .w-widget {
    position: relative; }
  #listify_stacks_in_5595 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_5595 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_5595 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_5595 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_5595 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_5595 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_5595 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_5595 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_5595 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_5595 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_5595 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_5595 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_5595 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_5595 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_5595 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_5595 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_5595 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_5595 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_5595 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_5595 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_5595 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_5595 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_5595 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_5595 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_5595 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_5595 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_5595 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_5595 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_5595 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_5595 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_5595 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_5595 .w-slider-arrow-left, #listify_stacks_in_5595 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_5595 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_5595 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_5595 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_5595 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_5595 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_5595 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_5595 .w-icon-slider-left, #listify_stacks_in_5595 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5595 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_5595 .w-dropdown-btn, #listify_stacks_in_5595 .w-dropdown-toggle, #listify_stacks_in_5595 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_5595 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_5595 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_5595 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5595 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_5595 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_5595 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_5595 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5595 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_5595 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_5595 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5595 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_5595 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5595 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5595 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_5595 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5595 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_5595 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5595 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_5595 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5595 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_5595 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5595 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5595 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_5595 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_5595 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_5595 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_5595 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_5595 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_5595 .w-lightbox-frame, #listify_stacks_in_5595 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_5595 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_5595 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_5595 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_5595 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_5595 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_5595 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_5595 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_5595 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_5595 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_5595 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_5595 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_5595 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_5595 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_5595 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_5595 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_5595 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_5595 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_5595 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_5595 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_5595 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_5595 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_5595 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_5595 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_5595 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_5595 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_5595 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_5595 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_5595 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_5595 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_5595 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_5595 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_5595 .w-lightbox-left, #listify_stacks_in_5595 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_5595 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_5595 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_5595 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_5595 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_5595 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5595 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5595 .w-richtext ol, #listify_stacks_in_5595 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_5595 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_5595 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_5595 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_5595 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_5595 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_5595 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_5595 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_5595 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_5595 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_5595 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_5595 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_5595 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_5595 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_5595 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_5595 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_5595 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_5595 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_5595 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_5595 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_5595 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_5595 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_5595 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_5595 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5595 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5595 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_5595 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_5595 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5595 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_5595 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_5595 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_5595 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_5595 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_5595 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5595 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5595 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5595 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5595 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_5595 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_5595 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_5595 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5595 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5595 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5595 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5595 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_5595 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5595 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5595 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_5595 .w-tabs {
    position: relative; }
    #listify_stacks_in_5595 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5595 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5595 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_5595 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_5595 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_5595 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_5595 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_5595 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5595 .w-tab-link {
      display: block; } }
  #listify_stacks_in_5595 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_5595 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_5595 .w-dyn-bind-empty, #listify_stacks_in_5595 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_5595 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_5595 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5595 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_5595 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5595 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5595 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5595 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5595 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5595 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5595 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5595 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5595 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5595 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5595 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_5595 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5595 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5595 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_5595 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_5595 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5595 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_5595 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_5595.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_5595.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_5595.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5596.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5596.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5596.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5596.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5596.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5596.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5596.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5596.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5596.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5596.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5596.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5596.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5598.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5598.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5598.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5598.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5598.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5598.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5598.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5598.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5598.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5598.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5598.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5598.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5599.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5599.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5599.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5599.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5599.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5599.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5599.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5599.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5599.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5599.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5599.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5599.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5600.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5600.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5600.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5600.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5600.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5600.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5600.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5600.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5600.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5600.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5600.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5600.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5601.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5601.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5601.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5601.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5601.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5601.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5601.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5601.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5601.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5601.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5601.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5601.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5602.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5602.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5602.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5602.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5602.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5602.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5602.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5602.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5602.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5602.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5602.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5602.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5603.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5603.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5603.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5603.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5603.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5603.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5603.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5603.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5603.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5603.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5603.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5603.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5604.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5604.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5604.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5604.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5604.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5604.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5604.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5604.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5604.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5604.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5604.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5604.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5605.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5605.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5605.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5605.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5605.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5605.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5605.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5605.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5605.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5605.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5605.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5605.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5606.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5606.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5606.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5606.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5606.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5606.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5606.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5606.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5606.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5606.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5606.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5606.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5607.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5607.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5607.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5607.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5607.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5607.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5607.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5607.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5607.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5607.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5607.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5607.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5608.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5608.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5608.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5608.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5608.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5608.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5608.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5608.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5608.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5608.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5608.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5608.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5609.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5609.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5609.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5609.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5609.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5609.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5609.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5609.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5609.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5609.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5609.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5609.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5610.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5610.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5610.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5610.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5610.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5610.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5610.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5610.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 11px;
    line-height: 17px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5610.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5610.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5610.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5610.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5611.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5611.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5611.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5611.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5611.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5611.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5611.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5611.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5611.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5611.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5611.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5611.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5612.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5612.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5612.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5612.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5612.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5612.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5612.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5612.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5612.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5612.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5612.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5612.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5613.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5613.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5613.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5613.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5613.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5613.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5613.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5613.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5613.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5613.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5613.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5613.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5614.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5614.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5614.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5614.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5614.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5614.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5614.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5614.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5614.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5614.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5614.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5614.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5615.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5615.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5615.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5615.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5615.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5615.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5615.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5615.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5615.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5615.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5615.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5615.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5616.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5616.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5616.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5616.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5616.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5616.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5616.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5616.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5616.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5616.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5616.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5616.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5617.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5617.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5617.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5617.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5617.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5617.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5617.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5617.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5617.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5617.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5617.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5617.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5618.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5618.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5618.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5618.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5618.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5618.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5618.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5618.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5618.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5618.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5618.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5618.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5619.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5619.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5619.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5619.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5619.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5619.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5619.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5619.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5619.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5619.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5619.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5619.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5620.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5620.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5620.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5620.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5620.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5620.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5620.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5620.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5620.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5620.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5620.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5620.hide-d {
    display: none; } }

/*  */


#stacks_out_5622 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_5622 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_5622 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_5622 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_5622 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_5622 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_5622 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}







#stacks_in_5626-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5626-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5626-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5626-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_5626-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_5626-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_5628-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5628-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_5628-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5628-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_5630-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_5630-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_5630-header {
	margin-bottom: 0;
}






.stacks_in_5630-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_5630-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_5630-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_5630-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_5630-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_5630-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_5632 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_5632 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_5632 body {
    margin: 0; }
  #listify_stacks_in_5632 article, #listify_stacks_in_5632 aside, #listify_stacks_in_5632 details, #listify_stacks_in_5632 figcaption, #listify_stacks_in_5632 figure, #listify_stacks_in_5632 footer, #listify_stacks_in_5632 header, #listify_stacks_in_5632 hgroup, #listify_stacks_in_5632 main, #listify_stacks_in_5632 menu, #listify_stacks_in_5632 nav, #listify_stacks_in_5632 section, #listify_stacks_in_5632 summary {
    display: block; }
  #listify_stacks_in_5632 audio, #listify_stacks_in_5632 canvas, #listify_stacks_in_5632 progress, #listify_stacks_in_5632 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_5632 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_5632 [hidden], #listify_stacks_in_5632 template {
    display: none; }
  #listify_stacks_in_5632 a {
    background-color: transparent; }
    #listify_stacks_in_5632 a:active, #listify_stacks_in_5632 a:hover {
      outline: 0; }
  #listify_stacks_in_5632 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_5632 b, #listify_stacks_in_5632 strong {
    font-weight: bold; }
  #listify_stacks_in_5632 dfn {
    font-style: italic; }
  #listify_stacks_in_5632 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_5632 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_5632 small {
    font-size: 80%; }
  #listify_stacks_in_5632 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_5632 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_5632 sub {
    bottom: -0.25em; }
  #listify_stacks_in_5632 img {
    border: 0; }
  #listify_stacks_in_5632 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_5632 figure {
    margin: 1em 40px; }
  #listify_stacks_in_5632 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_5632 pre {
    overflow: auto; }
  #listify_stacks_in_5632 code, #listify_stacks_in_5632 kbd, #listify_stacks_in_5632 pre, #listify_stacks_in_5632 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_5632 button, #listify_stacks_in_5632 input, #listify_stacks_in_5632 optgroup, #listify_stacks_in_5632 select, #listify_stacks_in_5632 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_5632 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_5632 select {
    text-transform: none; }
  #listify_stacks_in_5632 button, #listify_stacks_in_5632 html input[type="button"], #listify_stacks_in_5632 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_5632 button[disabled], #listify_stacks_in_5632 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_5632 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_5632 input {
    line-height: normal; }
    #listify_stacks_in_5632 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_5632 input[type="checkbox"], #listify_stacks_in_5632 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_5632 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_5632 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_5632 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_5632 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_5632 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_5632 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_5632 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_5632 textarea {
    overflow: auto; }
  #listify_stacks_in_5632 optgroup {
    font-weight: bold; }
  #listify_stacks_in_5632 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_5632 td, #listify_stacks_in_5632 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_5632 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_5632 [class^="w-icon-"], #listify_stacks_in_5632 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_5632 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_5632 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_5632 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_5632 .w-icon-arrow-down:before, #listify_stacks_in_5632 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_5632 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_5632 html {
    height: 100%; }
  #listify_stacks_in_5632 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_5632 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_5632 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_5632 .w-block {
    display: block; }
  #listify_stacks_in_5632 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_5632 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5632 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5632 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_5632 .w-hidden {
    display: none; }
  #listify_stacks_in_5632 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_5632 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_5632 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_5632 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_5632 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_5632 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_5632 h1, #listify_stacks_in_5632 h2, #listify_stacks_in_5632 h3, #listify_stacks_in_5632 h4, #listify_stacks_in_5632 h5, #listify_stacks_in_5632 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_5632 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_5632 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_5632 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_5632 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_5632 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_5632 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_5632 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5632 a:focus {
    outline: 0; }
  #listify_stacks_in_5632 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_5632 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5632 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_5632 ul, #listify_stacks_in_5632 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_5632 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_5632 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5632 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5632 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_5632 .w-video iframe, #listify_stacks_in_5632 .w-video object, #listify_stacks_in_5632 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_5632 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_5632 button, #listify_stacks_in_5632 html input[type="button"], #listify_stacks_in_5632 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_5632 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_5632 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_5632 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_5632 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_5632 .w-input, #listify_stacks_in_5632 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_5632 .w-input:-moz-placeholder, #listify_stacks_in_5632 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_5632 .w-input::-moz-placeholder, #listify_stacks_in_5632 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_5632 .w-input:-ms-input-placeholder, #listify_stacks_in_5632 .w-select:-ms-input-placeholder, #listify_stacks_in_5632 .w-input::-webkit-input-placeholder, #listify_stacks_in_5632 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_5632 .w-input:focus, #listify_stacks_in_5632 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_5632 .w-input[disabled], #listify_stacks_in_5632 .w-select[disabled], #listify_stacks_in_5632 .w-input[readonly], #listify_stacks_in_5632 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5632 fieldset[disabled] .w-input, #listify_stacks_in_5632 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5632 textarea.w-input, #listify_stacks_in_5632 textarea.w-select {
    height: auto; }
  #listify_stacks_in_5632 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_5632 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_5632 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_5632 .w-checkbox, #listify_stacks_in_5632 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_5632 .w-checkbox:before, #listify_stacks_in_5632 .w-radio:before, #listify_stacks_in_5632 .w-checkbox:after, #listify_stacks_in_5632 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_5632 .w-checkbox:after, #listify_stacks_in_5632 .w-radio:after {
    clear: both; }
  #listify_stacks_in_5632 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_5632 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_5632 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_5632 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5632 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_5632 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_5632 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5632 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5632 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_5632 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_5632 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_5632 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_5632 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_5632 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_5632 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_5632 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_5632 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_5632 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_5632 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_5632 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_5632 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_5632 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_5632 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_5632 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5632 .w-container {
      max-width: 728px; }
    #listify_stacks_in_5632 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_5632 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_5632 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5632 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5632 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_5632 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5632 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5632 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_5632 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5632 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5632 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_5632 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5632 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5632 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_5632 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5632 .w-hidden-main, #listify_stacks_in_5632 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_5632 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_5632 .w-row, #listify_stacks_in_5632 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_5632 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_5632 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5632 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5632 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_5632 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5632 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5632 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_5632 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5632 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5632 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_5632 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5632 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5632 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5632 .w-container {
      max-width: none; }
    #listify_stacks_in_5632 .w-hidden-main, #listify_stacks_in_5632 .w-hidden-medium, #listify_stacks_in_5632 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_5632 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_5632 .w-col {
      width: 100%; }
    #listify_stacks_in_5632 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5632 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5632 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_5632 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5632 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5632 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_5632 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5632 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5632 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_5632 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5632 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5632 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_5632 .w-widget {
    position: relative; }
  #listify_stacks_in_5632 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_5632 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_5632 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_5632 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_5632 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_5632 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_5632 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_5632 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_5632 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_5632 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_5632 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_5632 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_5632 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_5632 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_5632 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_5632 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_5632 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_5632 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_5632 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_5632 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_5632 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_5632 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_5632 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_5632 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_5632 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_5632 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_5632 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_5632 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_5632 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_5632 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_5632 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_5632 .w-slider-arrow-left, #listify_stacks_in_5632 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_5632 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_5632 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_5632 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_5632 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_5632 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_5632 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_5632 .w-icon-slider-left, #listify_stacks_in_5632 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5632 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_5632 .w-dropdown-btn, #listify_stacks_in_5632 .w-dropdown-toggle, #listify_stacks_in_5632 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_5632 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_5632 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_5632 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5632 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_5632 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_5632 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_5632 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5632 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_5632 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_5632 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5632 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_5632 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5632 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5632 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_5632 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5632 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_5632 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5632 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_5632 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5632 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_5632 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5632 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5632 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_5632 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_5632 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_5632 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_5632 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_5632 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_5632 .w-lightbox-frame, #listify_stacks_in_5632 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_5632 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_5632 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_5632 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_5632 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_5632 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_5632 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_5632 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_5632 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_5632 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_5632 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_5632 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_5632 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_5632 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_5632 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_5632 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_5632 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_5632 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_5632 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_5632 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_5632 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_5632 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_5632 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_5632 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_5632 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_5632 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_5632 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_5632 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_5632 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_5632 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_5632 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_5632 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_5632 .w-lightbox-left, #listify_stacks_in_5632 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_5632 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_5632 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_5632 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_5632 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_5632 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5632 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5632 .w-richtext ol, #listify_stacks_in_5632 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_5632 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_5632 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_5632 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_5632 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_5632 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_5632 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_5632 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_5632 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_5632 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_5632 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_5632 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_5632 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_5632 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_5632 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_5632 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_5632 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_5632 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_5632 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_5632 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_5632 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_5632 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_5632 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_5632 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5632 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5632 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_5632 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_5632 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5632 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_5632 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_5632 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_5632 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_5632 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_5632 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5632 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5632 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5632 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5632 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_5632 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_5632 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_5632 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5632 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5632 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5632 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5632 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_5632 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5632 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5632 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_5632 .w-tabs {
    position: relative; }
    #listify_stacks_in_5632 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5632 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5632 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_5632 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_5632 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_5632 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_5632 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_5632 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5632 .w-tab-link {
      display: block; } }
  #listify_stacks_in_5632 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_5632 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_5632 .w-dyn-bind-empty, #listify_stacks_in_5632 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_5632 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_5632 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5632 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_5632 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5632 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5632 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5632 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5632 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5632 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5632 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5632 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5632 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5632 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5632 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_5632 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5632 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5632 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_5632 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_5632 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5632 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_5632 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_5632.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_5632.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_5632.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5633.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5633.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5633.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5633.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5633.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5633.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5633.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5633.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5633.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5633.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5633.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5633.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5635.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5635.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5635.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5635.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5635.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5635.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5635.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5635.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5635.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5635.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5635.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5635.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5636.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5636.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5636.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5636.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5636.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5636.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5636.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5636.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5636.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5636.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5636.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5636.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5637.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5637.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5637.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5637.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5637.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5637.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5637.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5637.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5637.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5637.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5637.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5637.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5638.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5638.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5638.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5638.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5638.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5638.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5638.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5638.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5638.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5638.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5638.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5638.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5639.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5639.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5639.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5639.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5639.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5639.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5639.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5639.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5639.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5639.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5639.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5639.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5640.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5640.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5640.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5640.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5640.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5640.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(84, 191, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5640.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5640.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5640.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5640.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5640.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5640.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5641.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5641.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5641.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5641.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5641.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5641.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5641.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5641.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5641.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5641.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5641.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5641.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5642.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5642.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5642.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5642.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5642.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5642.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(84, 191, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5642.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5642.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5642.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5642.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5642.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5642.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5643.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5643.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5643.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5643.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5643.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5643.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5643.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5643.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5643.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5643.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5643.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5643.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5644.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5644.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5644.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5644.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5644.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5644.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5644.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5644.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5644.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5644.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5644.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5644.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5645.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5645.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5645.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5645.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5645.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5645.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5645.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5645.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5645.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5645.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5645.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5645.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5646.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5646.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5646.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5646.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5646.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5646.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5646.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5646.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5646.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5646.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5646.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5646.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5647.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5647.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5647.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5647.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5647.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5647.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5647.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5647.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5647.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5647.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5647.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5647.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5648.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5648.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5648.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5648.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5648.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5648.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5648.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5648.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5648.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5648.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5648.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5648.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5649.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5649.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5649.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5649.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5649.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5649.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5649.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5649.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5649.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5649.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5649.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5649.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5650.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5650.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5650.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5650.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5650.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5650.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5650.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5650.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5650.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5650.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5650.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5650.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5651.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5651.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5651.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5651.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5651.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5651.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5651.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5651.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5651.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5651.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5651.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5651.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5652.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5652.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5652.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5652.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5652.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5652.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5652.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5652.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5652.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5652.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5652.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5652.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5653.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5653.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5653.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5653.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5653.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5653.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5653.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5653.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5653.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5653.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5653.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5653.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5654.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5654.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5654.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5654.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5654.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5654.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5654.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5654.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5654.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5654.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5654.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5654.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5655.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5655.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5655.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5655.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5655.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5655.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5655.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5655.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5655.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5655.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5655.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5655.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5656.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5656.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5656.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5656.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5656.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5656.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5656.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5656.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5656.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5656.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5656.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5656.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5657.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5657.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5657.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5657.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5657.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5657.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5657.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5657.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5657.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5657.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5657.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5657.hide-d {
    display: none; } }

/*  */


#stacks_out_5659 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_5659 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_5659 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_5659 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_5659 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_5659 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_5659 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}







#stacks_in_5663-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5663-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_5663-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5663-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_5663-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_5663-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_5665-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_5665-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_5665-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_5665-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_5667-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_5667-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_5667-header {
	margin-bottom: 0;
}






.stacks_in_5667-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_5667-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_5667-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_5667-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_5667-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_5667-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_5669 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_5669 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_5669 body {
    margin: 0; }
  #listify_stacks_in_5669 article, #listify_stacks_in_5669 aside, #listify_stacks_in_5669 details, #listify_stacks_in_5669 figcaption, #listify_stacks_in_5669 figure, #listify_stacks_in_5669 footer, #listify_stacks_in_5669 header, #listify_stacks_in_5669 hgroup, #listify_stacks_in_5669 main, #listify_stacks_in_5669 menu, #listify_stacks_in_5669 nav, #listify_stacks_in_5669 section, #listify_stacks_in_5669 summary {
    display: block; }
  #listify_stacks_in_5669 audio, #listify_stacks_in_5669 canvas, #listify_stacks_in_5669 progress, #listify_stacks_in_5669 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_5669 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_5669 [hidden], #listify_stacks_in_5669 template {
    display: none; }
  #listify_stacks_in_5669 a {
    background-color: transparent; }
    #listify_stacks_in_5669 a:active, #listify_stacks_in_5669 a:hover {
      outline: 0; }
  #listify_stacks_in_5669 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_5669 b, #listify_stacks_in_5669 strong {
    font-weight: bold; }
  #listify_stacks_in_5669 dfn {
    font-style: italic; }
  #listify_stacks_in_5669 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_5669 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_5669 small {
    font-size: 80%; }
  #listify_stacks_in_5669 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_5669 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_5669 sub {
    bottom: -0.25em; }
  #listify_stacks_in_5669 img {
    border: 0; }
  #listify_stacks_in_5669 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_5669 figure {
    margin: 1em 40px; }
  #listify_stacks_in_5669 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_5669 pre {
    overflow: auto; }
  #listify_stacks_in_5669 code, #listify_stacks_in_5669 kbd, #listify_stacks_in_5669 pre, #listify_stacks_in_5669 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_5669 button, #listify_stacks_in_5669 input, #listify_stacks_in_5669 optgroup, #listify_stacks_in_5669 select, #listify_stacks_in_5669 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_5669 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_5669 select {
    text-transform: none; }
  #listify_stacks_in_5669 button, #listify_stacks_in_5669 html input[type="button"], #listify_stacks_in_5669 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_5669 button[disabled], #listify_stacks_in_5669 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_5669 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_5669 input {
    line-height: normal; }
    #listify_stacks_in_5669 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_5669 input[type="checkbox"], #listify_stacks_in_5669 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_5669 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_5669 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_5669 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_5669 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_5669 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_5669 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_5669 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_5669 textarea {
    overflow: auto; }
  #listify_stacks_in_5669 optgroup {
    font-weight: bold; }
  #listify_stacks_in_5669 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_5669 td, #listify_stacks_in_5669 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_5669 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_5669 [class^="w-icon-"], #listify_stacks_in_5669 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_5669 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_5669 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_5669 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_5669 .w-icon-arrow-down:before, #listify_stacks_in_5669 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_5669 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_5669 html {
    height: 100%; }
  #listify_stacks_in_5669 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_5669 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_5669 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_5669 .w-block {
    display: block; }
  #listify_stacks_in_5669 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_5669 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5669 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5669 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_5669 .w-hidden {
    display: none; }
  #listify_stacks_in_5669 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_5669 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_5669 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_5669 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_5669 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_5669 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_5669 h1, #listify_stacks_in_5669 h2, #listify_stacks_in_5669 h3, #listify_stacks_in_5669 h4, #listify_stacks_in_5669 h5, #listify_stacks_in_5669 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_5669 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_5669 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_5669 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_5669 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_5669 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_5669 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_5669 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5669 a:focus {
    outline: 0; }
  #listify_stacks_in_5669 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_5669 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_5669 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_5669 ul, #listify_stacks_in_5669 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_5669 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_5669 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5669 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5669 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_5669 .w-video iframe, #listify_stacks_in_5669 .w-video object, #listify_stacks_in_5669 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_5669 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_5669 button, #listify_stacks_in_5669 html input[type="button"], #listify_stacks_in_5669 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_5669 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_5669 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_5669 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_5669 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_5669 .w-input, #listify_stacks_in_5669 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_5669 .w-input:-moz-placeholder, #listify_stacks_in_5669 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_5669 .w-input::-moz-placeholder, #listify_stacks_in_5669 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_5669 .w-input:-ms-input-placeholder, #listify_stacks_in_5669 .w-select:-ms-input-placeholder, #listify_stacks_in_5669 .w-input::-webkit-input-placeholder, #listify_stacks_in_5669 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_5669 .w-input:focus, #listify_stacks_in_5669 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_5669 .w-input[disabled], #listify_stacks_in_5669 .w-select[disabled], #listify_stacks_in_5669 .w-input[readonly], #listify_stacks_in_5669 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5669 fieldset[disabled] .w-input, #listify_stacks_in_5669 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_5669 textarea.w-input, #listify_stacks_in_5669 textarea.w-select {
    height: auto; }
  #listify_stacks_in_5669 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_5669 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_5669 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_5669 .w-checkbox, #listify_stacks_in_5669 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_5669 .w-checkbox:before, #listify_stacks_in_5669 .w-radio:before, #listify_stacks_in_5669 .w-checkbox:after, #listify_stacks_in_5669 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_5669 .w-checkbox:after, #listify_stacks_in_5669 .w-radio:after {
    clear: both; }
  #listify_stacks_in_5669 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_5669 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_5669 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_5669 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5669 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_5669 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_5669 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5669 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5669 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_5669 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_5669 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_5669 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_5669 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_5669 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_5669 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_5669 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_5669 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_5669 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_5669 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_5669 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_5669 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_5669 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_5669 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_5669 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5669 .w-container {
      max-width: 728px; }
    #listify_stacks_in_5669 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_5669 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_5669 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5669 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5669 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_5669 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5669 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5669 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_5669 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5669 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5669 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_5669 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5669 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5669 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_5669 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5669 .w-hidden-main, #listify_stacks_in_5669 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_5669 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_5669 .w-row, #listify_stacks_in_5669 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_5669 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_5669 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5669 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5669 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_5669 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5669 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5669 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_5669 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5669 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5669 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_5669 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5669 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5669 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5669 .w-container {
      max-width: none; }
    #listify_stacks_in_5669 .w-hidden-main, #listify_stacks_in_5669 .w-hidden-medium, #listify_stacks_in_5669 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_5669 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_5669 .w-col {
      width: 100%; }
    #listify_stacks_in_5669 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_5669 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_5669 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_5669 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_5669 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_5669 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_5669 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_5669 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_5669 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_5669 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_5669 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_5669 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_5669 .w-widget {
    position: relative; }
  #listify_stacks_in_5669 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_5669 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_5669 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_5669 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_5669 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_5669 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_5669 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_5669 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_5669 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_5669 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_5669 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_5669 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_5669 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_5669 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_5669 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_5669 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_5669 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_5669 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_5669 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_5669 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_5669 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_5669 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_5669 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_5669 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_5669 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_5669 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_5669 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_5669 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_5669 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_5669 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_5669 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_5669 .w-slider-arrow-left, #listify_stacks_in_5669 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_5669 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_5669 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_5669 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_5669 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_5669 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_5669 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_5669 .w-icon-slider-left, #listify_stacks_in_5669 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5669 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_5669 .w-dropdown-btn, #listify_stacks_in_5669 .w-dropdown-toggle, #listify_stacks_in_5669 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_5669 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_5669 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_5669 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_5669 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_5669 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_5669 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_5669 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5669 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_5669 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_5669 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5669 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_5669 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5669 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5669 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_5669 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5669 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_5669 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5669 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_5669 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_5669 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_5669 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5669 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_5669 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_5669 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_5669 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_5669 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_5669 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_5669 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_5669 .w-lightbox-frame, #listify_stacks_in_5669 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_5669 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_5669 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_5669 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_5669 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_5669 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_5669 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_5669 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_5669 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_5669 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_5669 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_5669 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_5669 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_5669 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_5669 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_5669 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_5669 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_5669 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_5669 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_5669 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_5669 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_5669 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_5669 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_5669 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_5669 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_5669 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_5669 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_5669 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_5669 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_5669 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_5669 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_5669 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_5669 .w-lightbox-left, #listify_stacks_in_5669 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_5669 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_5669 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_5669 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_5669 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_5669 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_5669 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_5669 .w-richtext ol, #listify_stacks_in_5669 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_5669 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_5669 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_5669 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_5669 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_5669 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_5669 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_5669 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_5669 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_5669 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_5669 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_5669 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_5669 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_5669 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_5669 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_5669 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_5669 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_5669 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_5669 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_5669 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_5669 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_5669 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_5669 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_5669 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5669 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5669 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_5669 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_5669 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_5669 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_5669 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_5669 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_5669 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_5669 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_5669 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5669 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5669 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5669 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_5669 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_5669 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_5669 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_5669 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_5669 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5669 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_5669 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5669 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_5669 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5669 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_5669 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_5669 .w-tabs {
    position: relative; }
    #listify_stacks_in_5669 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_5669 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_5669 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_5669 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_5669 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_5669 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_5669 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_5669 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_5669 .w-tab-link {
      display: block; } }
  #listify_stacks_in_5669 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_5669 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_5669 .w-dyn-bind-empty, #listify_stacks_in_5669 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_5669 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_5669 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5669 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_5669 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5669 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5669 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5669 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5669 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5669 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5669 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5669 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5669 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5669 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_5669 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_5669 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_5669 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5669 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_5669 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_5669 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_5669 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_5669 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_5669.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_5669.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_5669.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5670.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5670.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5670.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5670.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5670.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5670.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5670.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5670.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5670.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5670.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5670.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5670.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5672.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5672.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5672.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5672.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5672.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5672.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5672.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5672.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5672.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5672.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5672.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5672.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5673.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5673.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5673.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5673.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5673.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5673.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5673.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5673.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5673.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5673.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5673.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5673.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5674.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5674.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5674.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5674.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5674.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5674.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5674.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5674.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5674.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5674.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5674.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5674.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5675.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5675.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5675.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5675.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5675.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5675.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5675.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5675.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5675.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5675.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5675.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5675.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5676.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5676.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5676.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5676.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5676.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5676.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5676.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5676.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 11px;
    line-height: 17px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5676.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5676.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5676.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5676.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5677.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5677.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5677.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5677.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5677.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5677.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5677.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5677.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5677.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5677.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5677.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5677.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5678.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5678.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5678.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5678.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5678.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5678.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5678.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5678.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5678.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5678.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5678.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5678.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5679.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5679.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5679.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5679.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5679.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5679.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5679.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5679.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5679.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5679.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5679.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5679.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5680.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5680.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5680.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5680.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5680.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5680.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5680.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5680.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5680.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5680.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5680.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5680.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5681.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5681.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5681.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5681.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5681.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5681.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5681.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5681.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5681.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5681.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5681.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5681.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5682.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5682.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5682.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5682.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5682.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5682.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5682.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5682.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5682.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5682.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5682.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5682.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5683.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5683.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5683.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5683.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5683.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5683.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5683.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5683.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5683.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5683.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5683.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5683.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5684.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5684.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5684.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5684.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5684.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5684.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5684.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5684.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5684.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5684.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5684.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5684.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5685.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5685.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5685.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5685.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5685.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5685.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5685.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5685.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5685.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5685.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5685.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5685.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5686.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5686.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5686.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5686.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5686.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5686.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5686.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5686.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5686.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5686.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5686.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5686.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5687.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5687.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5687.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5687.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5687.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5687.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5687.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5687.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5687.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5687.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5687.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5687.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5688.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5688.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5688.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5688.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5688.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5688.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5688.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5688.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5688.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5688.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5688.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5688.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5689.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5689.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5689.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5689.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5689.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5689.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5689.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5689.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5689.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5689.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5689.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5689.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5690.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5690.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5690.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5690.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5690.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5690.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5690.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5690.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5690.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5690.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5690.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5690.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5691.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5691.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5691.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5691.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5691.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5691.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5691.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5691.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5691.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5691.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5691.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5691.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5692.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5692.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5692.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5692.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5692.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5692.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5692.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5692.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5692.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5692.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5692.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5692.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5693.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5693.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_5693.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5693.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5693.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5693.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5693.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5693.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5693.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5693.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5693.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5693.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_5694.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_5694.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_5694.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_5694.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_5694.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_5694.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5694.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_5694.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_5694.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_5694.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_5694.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_5694.hide-d {
    display: none; } }

/*  */


#stacks_in_5769 .trigger_myID {
	cursor: pointer;
	display: inline-block;
	color: #515151;

	
	font-size: 26px;
	line-height: 26px;
	

	padding-left: 1px;
}

#stacks_in_5769 .toggle_open .closed_icon {
	display: none;
}

#stacks_in_5769 .toggle_closed .open_icon {
	display: none;
}

#stacks_in_5769 .toggle_open .closed_image {
	display: none;
}

#stacks_in_5769 .toggle_closed .open_image {
	display: none;
}



#stacks_in_5769 {
	position: relative;
	text-align: center;
}

#stacks_in_5769 .trigger_label,
#stacks_in_5769 .trigger_label_open {
	font-size: 18px;
	color: #515151;
	margin-left: 4px;
	
	line-height: 26px;
	vertical-align: top;
	
}

#stacks_in_5769 .trigger_label_open {
	display: none;
}

#stacks_in_4962 {
	position: relative;
	display: block;
}

.myID {
	position: relative;
	
	
}






	
	#stacks_in_4962 .cpsl_myID {
		padding: 0px;
	}
	







#stacks_in_4366-wrapper {
	
}

#stacks_in_4366-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_4366-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_4366-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_4366-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_4366-wrapper.fdy-container {
	max-width: 960px;
  }
}











@media (max-width: 575px) {
	
}


#stacks_out_4377 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_4377 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_4377 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_4377 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_4377 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_4377 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_4377 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}





#stacks_in_4304-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_4304-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_4304-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_4304-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_4304-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_4304-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_4305-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_4305-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_4305-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_4305-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_4307-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_4307-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_4307-header {
	margin-bottom: 0;
}






.stacks_in_4307-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_4307-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_4307-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_4307-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_4307-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_4307-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_4310 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_4310 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_4310 body {
    margin: 0; }
  #listify_stacks_in_4310 article, #listify_stacks_in_4310 aside, #listify_stacks_in_4310 details, #listify_stacks_in_4310 figcaption, #listify_stacks_in_4310 figure, #listify_stacks_in_4310 footer, #listify_stacks_in_4310 header, #listify_stacks_in_4310 hgroup, #listify_stacks_in_4310 main, #listify_stacks_in_4310 menu, #listify_stacks_in_4310 nav, #listify_stacks_in_4310 section, #listify_stacks_in_4310 summary {
    display: block; }
  #listify_stacks_in_4310 audio, #listify_stacks_in_4310 canvas, #listify_stacks_in_4310 progress, #listify_stacks_in_4310 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_4310 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_4310 [hidden], #listify_stacks_in_4310 template {
    display: none; }
  #listify_stacks_in_4310 a {
    background-color: transparent; }
    #listify_stacks_in_4310 a:active, #listify_stacks_in_4310 a:hover {
      outline: 0; }
  #listify_stacks_in_4310 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_4310 b, #listify_stacks_in_4310 strong {
    font-weight: bold; }
  #listify_stacks_in_4310 dfn {
    font-style: italic; }
  #listify_stacks_in_4310 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_4310 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_4310 small {
    font-size: 80%; }
  #listify_stacks_in_4310 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_4310 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_4310 sub {
    bottom: -0.25em; }
  #listify_stacks_in_4310 img {
    border: 0; }
  #listify_stacks_in_4310 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_4310 figure {
    margin: 1em 40px; }
  #listify_stacks_in_4310 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_4310 pre {
    overflow: auto; }
  #listify_stacks_in_4310 code, #listify_stacks_in_4310 kbd, #listify_stacks_in_4310 pre, #listify_stacks_in_4310 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_4310 button, #listify_stacks_in_4310 input, #listify_stacks_in_4310 optgroup, #listify_stacks_in_4310 select, #listify_stacks_in_4310 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_4310 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_4310 select {
    text-transform: none; }
  #listify_stacks_in_4310 button, #listify_stacks_in_4310 html input[type="button"], #listify_stacks_in_4310 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_4310 button[disabled], #listify_stacks_in_4310 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_4310 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_4310 input {
    line-height: normal; }
    #listify_stacks_in_4310 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_4310 input[type="checkbox"], #listify_stacks_in_4310 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_4310 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_4310 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_4310 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_4310 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_4310 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_4310 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_4310 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_4310 textarea {
    overflow: auto; }
  #listify_stacks_in_4310 optgroup {
    font-weight: bold; }
  #listify_stacks_in_4310 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_4310 td, #listify_stacks_in_4310 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_4310 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_4310 [class^="w-icon-"], #listify_stacks_in_4310 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_4310 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_4310 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_4310 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_4310 .w-icon-arrow-down:before, #listify_stacks_in_4310 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_4310 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_4310 html {
    height: 100%; }
  #listify_stacks_in_4310 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_4310 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_4310 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_4310 .w-block {
    display: block; }
  #listify_stacks_in_4310 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_4310 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4310 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4310 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_4310 .w-hidden {
    display: none; }
  #listify_stacks_in_4310 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_4310 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_4310 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_4310 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_4310 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_4310 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_4310 h1, #listify_stacks_in_4310 h2, #listify_stacks_in_4310 h3, #listify_stacks_in_4310 h4, #listify_stacks_in_4310 h5, #listify_stacks_in_4310 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_4310 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_4310 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_4310 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_4310 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_4310 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_4310 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_4310 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_4310 a:focus {
    outline: 0; }
  #listify_stacks_in_4310 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_4310 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_4310 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_4310 ul, #listify_stacks_in_4310 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_4310 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_4310 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4310 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4310 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_4310 .w-video iframe, #listify_stacks_in_4310 .w-video object, #listify_stacks_in_4310 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_4310 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_4310 button, #listify_stacks_in_4310 html input[type="button"], #listify_stacks_in_4310 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_4310 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_4310 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_4310 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_4310 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_4310 .w-input, #listify_stacks_in_4310 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_4310 .w-input:-moz-placeholder, #listify_stacks_in_4310 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_4310 .w-input::-moz-placeholder, #listify_stacks_in_4310 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_4310 .w-input:-ms-input-placeholder, #listify_stacks_in_4310 .w-select:-ms-input-placeholder, #listify_stacks_in_4310 .w-input::-webkit-input-placeholder, #listify_stacks_in_4310 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_4310 .w-input:focus, #listify_stacks_in_4310 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_4310 .w-input[disabled], #listify_stacks_in_4310 .w-select[disabled], #listify_stacks_in_4310 .w-input[readonly], #listify_stacks_in_4310 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_4310 fieldset[disabled] .w-input, #listify_stacks_in_4310 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_4310 textarea.w-input, #listify_stacks_in_4310 textarea.w-select {
    height: auto; }
  #listify_stacks_in_4310 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_4310 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_4310 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_4310 .w-checkbox, #listify_stacks_in_4310 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_4310 .w-checkbox:before, #listify_stacks_in_4310 .w-radio:before, #listify_stacks_in_4310 .w-checkbox:after, #listify_stacks_in_4310 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_4310 .w-checkbox:after, #listify_stacks_in_4310 .w-radio:after {
    clear: both; }
  #listify_stacks_in_4310 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_4310 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_4310 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_4310 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_4310 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_4310 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_4310 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4310 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4310 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_4310 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_4310 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_4310 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_4310 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_4310 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_4310 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_4310 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_4310 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_4310 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_4310 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_4310 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_4310 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_4310 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_4310 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_4310 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_4310 .w-container {
      max-width: 728px; }
    #listify_stacks_in_4310 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_4310 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_4310 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_4310 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_4310 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_4310 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_4310 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_4310 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_4310 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_4310 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_4310 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_4310 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_4310 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_4310 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_4310 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_4310 .w-hidden-main, #listify_stacks_in_4310 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_4310 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_4310 .w-row, #listify_stacks_in_4310 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_4310 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_4310 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_4310 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_4310 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_4310 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_4310 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_4310 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_4310 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_4310 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_4310 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_4310 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_4310 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_4310 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4310 .w-container {
      max-width: none; }
    #listify_stacks_in_4310 .w-hidden-main, #listify_stacks_in_4310 .w-hidden-medium, #listify_stacks_in_4310 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_4310 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_4310 .w-col {
      width: 100%; }
    #listify_stacks_in_4310 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_4310 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_4310 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_4310 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_4310 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_4310 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_4310 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_4310 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_4310 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_4310 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_4310 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_4310 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_4310 .w-widget {
    position: relative; }
  #listify_stacks_in_4310 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_4310 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_4310 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_4310 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_4310 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_4310 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_4310 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_4310 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_4310 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_4310 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_4310 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_4310 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_4310 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_4310 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_4310 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_4310 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_4310 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_4310 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_4310 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_4310 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_4310 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_4310 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_4310 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_4310 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_4310 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_4310 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_4310 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_4310 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_4310 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_4310 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_4310 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_4310 .w-slider-arrow-left, #listify_stacks_in_4310 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_4310 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_4310 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_4310 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_4310 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_4310 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_4310 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_4310 .w-icon-slider-left, #listify_stacks_in_4310 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_4310 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_4310 .w-dropdown-btn, #listify_stacks_in_4310 .w-dropdown-toggle, #listify_stacks_in_4310 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_4310 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_4310 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_4310 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_4310 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_4310 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_4310 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_4310 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_4310 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_4310 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_4310 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_4310 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_4310 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_4310 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_4310 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_4310 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_4310 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_4310 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4310 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_4310 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_4310 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_4310 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_4310 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_4310 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_4310 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_4310 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_4310 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_4310 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_4310 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_4310 .w-lightbox-frame, #listify_stacks_in_4310 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_4310 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_4310 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_4310 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_4310 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_4310 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_4310 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_4310 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_4310 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_4310 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_4310 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_4310 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_4310 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_4310 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_4310 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_4310 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_4310 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_4310 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_4310 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_4310 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_4310 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_4310 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_4310 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_4310 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_4310 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_4310 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_4310 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_4310 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_4310 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_4310 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_4310 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_4310 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_4310 .w-lightbox-left, #listify_stacks_in_4310 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_4310 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_4310 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_4310 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_4310 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_4310 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4310 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4310 .w-richtext ol, #listify_stacks_in_4310 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_4310 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_4310 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_4310 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_4310 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_4310 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_4310 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_4310 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_4310 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_4310 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_4310 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_4310 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_4310 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_4310 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_4310 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_4310 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_4310 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_4310 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_4310 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_4310 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_4310 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_4310 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_4310 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_4310 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_4310 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_4310 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_4310 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_4310 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_4310 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_4310 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_4310 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_4310 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_4310 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_4310 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4310 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4310 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4310 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4310 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_4310 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_4310 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_4310 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_4310 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_4310 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_4310 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_4310 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_4310 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4310 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_4310 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_4310 .w-tabs {
    position: relative; }
    #listify_stacks_in_4310 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_4310 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_4310 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_4310 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_4310 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_4310 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_4310 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_4310 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4310 .w-tab-link {
      display: block; } }
  #listify_stacks_in_4310 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_4310 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_4310 .w-dyn-bind-empty, #listify_stacks_in_4310 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_4310 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_4310 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_4310 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_4310 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4310 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4310 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4310 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4310 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4310 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4310 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4310 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4310 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4310 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4310 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_4310 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_4310 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_4310 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_4310 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_4310 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_4310 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_4310 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_4310.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_4310.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_4310.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4311.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4311.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4311.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4311.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4311.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4311.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4311.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4311.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4311.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4311.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4311.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4311.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4313.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4313.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4313.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4313.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4313.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4313.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4313.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4313.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4313.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4313.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4313.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4313.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4315.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4315.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4315.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4315.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4315.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4315.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4315.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4315.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4315.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4315.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4315.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4315.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4317.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4317.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4317.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4317.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4317.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4317.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4317.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4317.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4317.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4317.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4317.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4317.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4319.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4319.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4319.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4319.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4319.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4319.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4319.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4319.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4319.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4319.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4319.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4319.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4320.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4320.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4320.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4320.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4320.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4320.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4320.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4320.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4320.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4320.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4320.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4320.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4321.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4321.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4321.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4321.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4321.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4321.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 39, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4321.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4321.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4321.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4321.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4321.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4321.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4322.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4322.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4322.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4322.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4322.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4322.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4322.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4322.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4322.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4322.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4322.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4322.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4323.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4323.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4323.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4323.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4323.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4323.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4323.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4323.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4323.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4323.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4323.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4323.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4324.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4324.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4324.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4324.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4324.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4324.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4324.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4324.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4324.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4324.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4324.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4324.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4325.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4325.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4325.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4325.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4325.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4325.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4325.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4325.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4325.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4325.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4325.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4325.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4327.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4327.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4327.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4327.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4327.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4327.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4327.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4327.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4327.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4327.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4327.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4327.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4328.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4328.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4328.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4328.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4328.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4328.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4328.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4328.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4328.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4328.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4328.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4328.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4329.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4329.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4329.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4329.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4329.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4329.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4329.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4329.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 11px;
    line-height: 17px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4329.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4329.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4329.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4329.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4330.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4330.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4330.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4330.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4330.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4330.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4330.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4330.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4330.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4330.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4330.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4330.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4331.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4331.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4331.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4331.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4331.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4331.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4331.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4331.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4331.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4331.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4331.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4331.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4332.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4332.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4332.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4332.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4332.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4332.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4332.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4332.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4332.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4332.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4332.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4332.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4333.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4333.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4333.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4333.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4333.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4333.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4333.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4333.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4333.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4333.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4333.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4333.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4334.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4334.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4334.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4334.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4334.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4334.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4334.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4334.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4334.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4334.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4334.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4334.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4335.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4335.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4335.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4335.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4335.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4335.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4335.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4335.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4335.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4335.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4335.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4335.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4336.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4336.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4336.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4336.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4336.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4336.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4336.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4336.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4336.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4336.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4336.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4336.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4337.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4337.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4337.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4337.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4337.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4337.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4337.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4337.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4337.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4337.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4337.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4337.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4338.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4338.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4338.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4338.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4338.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4338.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4338.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4338.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4338.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4338.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4338.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4338.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4339.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4339.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4339.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4339.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4339.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4339.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4339.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4339.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4339.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4339.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4339.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4339.hide-d {
    display: none; } }

/*  */


#stacks_out_4471 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_4471 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_4471 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_4471 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_4471 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_4471 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_4471 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}







#stacks_in_4507-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_4507-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_4507-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_4507-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_4507-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_4507-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_4509-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_4509-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_4509-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_4509-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_4511-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_4511-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_4511-header {
	margin-bottom: 0;
}






.stacks_in_4511-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_4511-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_4511-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_4511-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_4511-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_4511-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_4514 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_4514 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_4514 body {
    margin: 0; }
  #listify_stacks_in_4514 article, #listify_stacks_in_4514 aside, #listify_stacks_in_4514 details, #listify_stacks_in_4514 figcaption, #listify_stacks_in_4514 figure, #listify_stacks_in_4514 footer, #listify_stacks_in_4514 header, #listify_stacks_in_4514 hgroup, #listify_stacks_in_4514 main, #listify_stacks_in_4514 menu, #listify_stacks_in_4514 nav, #listify_stacks_in_4514 section, #listify_stacks_in_4514 summary {
    display: block; }
  #listify_stacks_in_4514 audio, #listify_stacks_in_4514 canvas, #listify_stacks_in_4514 progress, #listify_stacks_in_4514 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_4514 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_4514 [hidden], #listify_stacks_in_4514 template {
    display: none; }
  #listify_stacks_in_4514 a {
    background-color: transparent; }
    #listify_stacks_in_4514 a:active, #listify_stacks_in_4514 a:hover {
      outline: 0; }
  #listify_stacks_in_4514 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_4514 b, #listify_stacks_in_4514 strong {
    font-weight: bold; }
  #listify_stacks_in_4514 dfn {
    font-style: italic; }
  #listify_stacks_in_4514 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_4514 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_4514 small {
    font-size: 80%; }
  #listify_stacks_in_4514 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_4514 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_4514 sub {
    bottom: -0.25em; }
  #listify_stacks_in_4514 img {
    border: 0; }
  #listify_stacks_in_4514 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_4514 figure {
    margin: 1em 40px; }
  #listify_stacks_in_4514 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_4514 pre {
    overflow: auto; }
  #listify_stacks_in_4514 code, #listify_stacks_in_4514 kbd, #listify_stacks_in_4514 pre, #listify_stacks_in_4514 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_4514 button, #listify_stacks_in_4514 input, #listify_stacks_in_4514 optgroup, #listify_stacks_in_4514 select, #listify_stacks_in_4514 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_4514 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_4514 select {
    text-transform: none; }
  #listify_stacks_in_4514 button, #listify_stacks_in_4514 html input[type="button"], #listify_stacks_in_4514 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_4514 button[disabled], #listify_stacks_in_4514 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_4514 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_4514 input {
    line-height: normal; }
    #listify_stacks_in_4514 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_4514 input[type="checkbox"], #listify_stacks_in_4514 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_4514 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_4514 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_4514 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_4514 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_4514 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_4514 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_4514 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_4514 textarea {
    overflow: auto; }
  #listify_stacks_in_4514 optgroup {
    font-weight: bold; }
  #listify_stacks_in_4514 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_4514 td, #listify_stacks_in_4514 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_4514 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_4514 [class^="w-icon-"], #listify_stacks_in_4514 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_4514 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_4514 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_4514 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_4514 .w-icon-arrow-down:before, #listify_stacks_in_4514 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_4514 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_4514 html {
    height: 100%; }
  #listify_stacks_in_4514 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_4514 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_4514 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_4514 .w-block {
    display: block; }
  #listify_stacks_in_4514 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_4514 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4514 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4514 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_4514 .w-hidden {
    display: none; }
  #listify_stacks_in_4514 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_4514 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_4514 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_4514 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_4514 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_4514 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_4514 h1, #listify_stacks_in_4514 h2, #listify_stacks_in_4514 h3, #listify_stacks_in_4514 h4, #listify_stacks_in_4514 h5, #listify_stacks_in_4514 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_4514 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_4514 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_4514 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_4514 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_4514 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_4514 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_4514 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_4514 a:focus {
    outline: 0; }
  #listify_stacks_in_4514 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_4514 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_4514 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_4514 ul, #listify_stacks_in_4514 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_4514 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_4514 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4514 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4514 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_4514 .w-video iframe, #listify_stacks_in_4514 .w-video object, #listify_stacks_in_4514 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_4514 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_4514 button, #listify_stacks_in_4514 html input[type="button"], #listify_stacks_in_4514 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_4514 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_4514 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_4514 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_4514 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_4514 .w-input, #listify_stacks_in_4514 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_4514 .w-input:-moz-placeholder, #listify_stacks_in_4514 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_4514 .w-input::-moz-placeholder, #listify_stacks_in_4514 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_4514 .w-input:-ms-input-placeholder, #listify_stacks_in_4514 .w-select:-ms-input-placeholder, #listify_stacks_in_4514 .w-input::-webkit-input-placeholder, #listify_stacks_in_4514 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_4514 .w-input:focus, #listify_stacks_in_4514 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_4514 .w-input[disabled], #listify_stacks_in_4514 .w-select[disabled], #listify_stacks_in_4514 .w-input[readonly], #listify_stacks_in_4514 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_4514 fieldset[disabled] .w-input, #listify_stacks_in_4514 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_4514 textarea.w-input, #listify_stacks_in_4514 textarea.w-select {
    height: auto; }
  #listify_stacks_in_4514 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_4514 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_4514 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_4514 .w-checkbox, #listify_stacks_in_4514 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_4514 .w-checkbox:before, #listify_stacks_in_4514 .w-radio:before, #listify_stacks_in_4514 .w-checkbox:after, #listify_stacks_in_4514 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_4514 .w-checkbox:after, #listify_stacks_in_4514 .w-radio:after {
    clear: both; }
  #listify_stacks_in_4514 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_4514 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_4514 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_4514 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_4514 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_4514 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_4514 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4514 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4514 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_4514 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_4514 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_4514 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_4514 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_4514 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_4514 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_4514 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_4514 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_4514 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_4514 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_4514 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_4514 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_4514 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_4514 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_4514 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_4514 .w-container {
      max-width: 728px; }
    #listify_stacks_in_4514 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_4514 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_4514 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_4514 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_4514 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_4514 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_4514 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_4514 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_4514 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_4514 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_4514 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_4514 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_4514 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_4514 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_4514 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_4514 .w-hidden-main, #listify_stacks_in_4514 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_4514 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_4514 .w-row, #listify_stacks_in_4514 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_4514 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_4514 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_4514 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_4514 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_4514 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_4514 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_4514 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_4514 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_4514 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_4514 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_4514 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_4514 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_4514 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4514 .w-container {
      max-width: none; }
    #listify_stacks_in_4514 .w-hidden-main, #listify_stacks_in_4514 .w-hidden-medium, #listify_stacks_in_4514 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_4514 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_4514 .w-col {
      width: 100%; }
    #listify_stacks_in_4514 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_4514 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_4514 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_4514 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_4514 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_4514 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_4514 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_4514 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_4514 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_4514 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_4514 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_4514 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_4514 .w-widget {
    position: relative; }
  #listify_stacks_in_4514 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_4514 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_4514 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_4514 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_4514 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_4514 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_4514 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_4514 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_4514 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_4514 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_4514 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_4514 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_4514 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_4514 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_4514 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_4514 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_4514 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_4514 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_4514 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_4514 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_4514 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_4514 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_4514 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_4514 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_4514 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_4514 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_4514 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_4514 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_4514 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_4514 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_4514 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_4514 .w-slider-arrow-left, #listify_stacks_in_4514 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_4514 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_4514 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_4514 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_4514 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_4514 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_4514 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_4514 .w-icon-slider-left, #listify_stacks_in_4514 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_4514 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_4514 .w-dropdown-btn, #listify_stacks_in_4514 .w-dropdown-toggle, #listify_stacks_in_4514 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_4514 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_4514 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_4514 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_4514 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_4514 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_4514 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_4514 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_4514 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_4514 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_4514 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_4514 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_4514 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_4514 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_4514 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_4514 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_4514 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_4514 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4514 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_4514 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_4514 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_4514 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_4514 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_4514 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_4514 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_4514 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_4514 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_4514 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_4514 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_4514 .w-lightbox-frame, #listify_stacks_in_4514 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_4514 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_4514 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_4514 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_4514 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_4514 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_4514 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_4514 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_4514 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_4514 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_4514 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_4514 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_4514 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_4514 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_4514 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_4514 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_4514 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_4514 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_4514 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_4514 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_4514 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_4514 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_4514 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_4514 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_4514 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_4514 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_4514 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_4514 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_4514 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_4514 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_4514 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_4514 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_4514 .w-lightbox-left, #listify_stacks_in_4514 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_4514 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_4514 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_4514 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_4514 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_4514 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4514 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4514 .w-richtext ol, #listify_stacks_in_4514 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_4514 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_4514 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_4514 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_4514 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_4514 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_4514 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_4514 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_4514 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_4514 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_4514 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_4514 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_4514 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_4514 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_4514 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_4514 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_4514 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_4514 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_4514 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_4514 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_4514 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_4514 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_4514 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_4514 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_4514 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_4514 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_4514 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_4514 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_4514 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_4514 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_4514 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_4514 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_4514 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_4514 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4514 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4514 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4514 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4514 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_4514 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_4514 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_4514 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_4514 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_4514 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_4514 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_4514 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_4514 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4514 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_4514 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_4514 .w-tabs {
    position: relative; }
    #listify_stacks_in_4514 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_4514 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_4514 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_4514 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_4514 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_4514 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_4514 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_4514 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4514 .w-tab-link {
      display: block; } }
  #listify_stacks_in_4514 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_4514 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_4514 .w-dyn-bind-empty, #listify_stacks_in_4514 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_4514 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_4514 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_4514 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_4514 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4514 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4514 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4514 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4514 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4514 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4514 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4514 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4514 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4514 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4514 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_4514 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_4514 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_4514 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_4514 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_4514 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_4514 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_4514 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_4514.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_4514.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_4514.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4515.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4515.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4515.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4515.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4515.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4515.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4515.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4515.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4515.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4515.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4515.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4515.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4517.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4517.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4517.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4517.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4517.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4517.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4517.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4517.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4517.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4517.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4517.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4517.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4519.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4519.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4519.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4519.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4519.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4519.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4519.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4519.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4519.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4519.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4519.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4519.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4521.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4521.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4521.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4521.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4521.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4521.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4521.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4521.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4521.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4521.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4521.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4521.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4523.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4523.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4523.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4523.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4523.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4523.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4523.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4523.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4523.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4523.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4523.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4523.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4525.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4525.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4525.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4525.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4525.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4525.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4525.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4525.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4525.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4525.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4525.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4525.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4527.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4527.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4527.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4527.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4527.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4527.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(84, 191, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4527.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4527.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4527.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4527.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4527.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4527.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4529.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4529.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4529.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4529.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4529.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4529.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4529.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4529.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4529.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4529.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4529.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4529.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4531.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4531.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4531.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4531.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4531.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4531.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(84, 191, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4531.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4531.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4531.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4531.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4531.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4531.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4533.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4533.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4533.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4533.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4533.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4533.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4533.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4533.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4533.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4533.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4533.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4533.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4535.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4535.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4535.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4535.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4535.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4535.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4535.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4535.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4535.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4535.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4535.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4535.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4537.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4537.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4537.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4537.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4537.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4537.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4537.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4537.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4537.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4537.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4537.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4537.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4539.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4539.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4539.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4539.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4539.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4539.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4539.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4539.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4539.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4539.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4539.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4539.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4541.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4541.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4541.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4541.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4541.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4541.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4541.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4541.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4541.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4541.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4541.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4541.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4543.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4543.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4543.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4543.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4543.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4543.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4543.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4543.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4543.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4543.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4543.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4543.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4545.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4545.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4545.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4545.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4545.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4545.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4545.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4545.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4545.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4545.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4545.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4545.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4547.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4547.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4547.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4547.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4547.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4547.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4547.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4547.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4547.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4547.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4547.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4547.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4549.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4549.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4549.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4549.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4549.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4549.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4549.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4549.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4549.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4549.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4549.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4549.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4551.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4551.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4551.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4551.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4551.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4551.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 191, 38, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4551.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4551.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4551.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4551.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4551.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4551.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4553.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4553.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4553.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4553.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4553.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4553.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4553.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4553.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4553.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4553.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4553.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4553.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4555.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4555.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4555.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4555.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4555.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4555.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4555.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4555.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4555.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4555.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4555.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4555.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4557.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4557.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4557.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4557.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4557.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4557.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4557.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4557.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4557.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4557.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4557.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4557.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4559.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4559.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4559.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4559.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4559.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4559.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(255, 0, 0, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4559.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4559.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4559.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4559.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4559.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4559.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4561.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4561.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4561.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4561.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4561.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4561.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4561.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4561.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4561.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4561.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4561.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4561.hide-d {
    display: none; } }

/*  */


#stacks_out_4565 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_4565 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_4565 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_4565 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_4565 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_4565 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_4565 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}







#stacks_in_4601-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_4601-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_4601-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_4601-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_4601-margins.padding-advanced {
		padding: 2.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_4601-margins.padding-advanced {
		padding: 0.00rem 0.00rem 4.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_4603-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_4603-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_4603-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_4603-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_4605-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_4605-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_4605-header {
	margin-bottom: 0;
}






.stacks_in_4605-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_4605-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_4605-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_4605-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_4605-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_4605-header {
		font-size: 2.00rem;
	}
}
@charset "UTF-8";
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(listify-files/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(listify-files/MaterialIcons-Regular.woff2) format('woff2'),
    url(listify-files/MaterialIcons-Regular.woff) format('woff'),
    url(listify-files/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
@font-face{font-family:"Ionicons";src:url("listify-files/ionicons.eot?v=2.0.1");src:url("listify-files/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"),url("listify-files/ionicons.ttf?v=2.0.1") format("truetype"),url("listify-files/ionicons.woff?v=2.0.1") format("woff"),url("listify-files/ionicons.svg?v=2.0.1#Ionicons") format("svg");font-weight:normal;font-style:normal}

#listify_stacks_in_4608 {
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
  /**
 * Remove default margin. */
  /* HTML5 display definitions
 * ========================================================================== */
  /**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
  /**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
  /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices. */
  /**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
  /* Links
 * ========================================================================== */
  /**
 * Remove the gray background color from active links in IE 10. */
  /**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
  /* Text-level semantics
 * ========================================================================== */
  /**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */
  /**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in Safari and Chrome. */
  /**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome. */
  /**
 * Address styling not present in IE 8/9. */
  /**
 * Address inconsistent and variable font size in all browsers. */
  /**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers. */
  /* Embedded content
 * ========================================================================== */
  /**
 * Remove border when inside `a` element in IE 8/9/10. */
  /**
 * Correct overflow not hidden in IE 9/10/11. */
  /* Grouping content
 * ========================================================================== */
  /**
 * Address margin not present in IE 8/9 and Safari. */
  /**
 * Address differences between Firefox and other browsers. */
  /**
 * Contain overflow in all browsers. */
  /**
 * Address odd `em`-unit font size rendering in all browsers. */
  /* Forms
 * ========================================================================== */
  /**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
  /**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
  /**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
  /**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox. */
  /**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector */
  /**
 * Re-set default cursor for disabled elements. */
  /**
 * Remove inner padding and border in Firefox 4+. */
  /**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet. */
  /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
  /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
  /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */
  /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
  /**
 * Define consistent border, margin, and padding. */
  /**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. */
  /**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
  /**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
  /* Tables
 * ========================================================================== */
  /**
 * Remove most spacing between table cells. */
  /**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`. */
  /**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox. */
  /**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll. */
  /* .w-lightbox-content */
  /*
 * 1. Remove default margin set by user-agent on the <figure> element. */
  /**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling. */
  /**
 * 1. Reset if style is set by user on "All Images" */
  /*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer) */
  /**
 * 1. All IE versions add extra space at the bottom without this. */
  /*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior. */
  /*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track. */
  /*
 * Utility classes */ }
  #listify_stacks_in_4608 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_4608 body {
    margin: 0; }
  #listify_stacks_in_4608 article, #listify_stacks_in_4608 aside, #listify_stacks_in_4608 details, #listify_stacks_in_4608 figcaption, #listify_stacks_in_4608 figure, #listify_stacks_in_4608 footer, #listify_stacks_in_4608 header, #listify_stacks_in_4608 hgroup, #listify_stacks_in_4608 main, #listify_stacks_in_4608 menu, #listify_stacks_in_4608 nav, #listify_stacks_in_4608 section, #listify_stacks_in_4608 summary {
    display: block; }
  #listify_stacks_in_4608 audio, #listify_stacks_in_4608 canvas, #listify_stacks_in_4608 progress, #listify_stacks_in_4608 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_4608 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_4608 [hidden], #listify_stacks_in_4608 template {
    display: none; }
  #listify_stacks_in_4608 a {
    background-color: transparent; }
    #listify_stacks_in_4608 a:active, #listify_stacks_in_4608 a:hover {
      outline: 0; }
  #listify_stacks_in_4608 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_4608 b, #listify_stacks_in_4608 strong {
    font-weight: bold; }
  #listify_stacks_in_4608 dfn {
    font-style: italic; }
  #listify_stacks_in_4608 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_4608 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_4608 small {
    font-size: 80%; }
  #listify_stacks_in_4608 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_4608 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_4608 sub {
    bottom: -0.25em; }
  #listify_stacks_in_4608 img {
    border: 0; }
  #listify_stacks_in_4608 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_4608 figure {
    margin: 1em 40px; }
  #listify_stacks_in_4608 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_4608 pre {
    overflow: auto; }
  #listify_stacks_in_4608 code, #listify_stacks_in_4608 kbd, #listify_stacks_in_4608 pre, #listify_stacks_in_4608 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_4608 button, #listify_stacks_in_4608 input, #listify_stacks_in_4608 optgroup, #listify_stacks_in_4608 select, #listify_stacks_in_4608 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_4608 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_4608 select {
    text-transform: none; }
  #listify_stacks_in_4608 button, #listify_stacks_in_4608 html input[type="button"], #listify_stacks_in_4608 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_4608 button[disabled], #listify_stacks_in_4608 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_4608 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_4608 input {
    line-height: normal; }
    #listify_stacks_in_4608 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_4608 input[type="checkbox"], #listify_stacks_in_4608 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_4608 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_4608 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_4608 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_4608 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_4608 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_4608 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_4608 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_4608 textarea {
    overflow: auto; }
  #listify_stacks_in_4608 optgroup {
    font-weight: bold; }
  #listify_stacks_in_4608 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_4608 td, #listify_stacks_in_4608 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_4608 {
    font-family: 'webflow-icons';
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format("truetype"), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("woff");
    font-weight: normal;
    font-style: normal; } }
  #listify_stacks_in_4608 [class^="w-icon-"], #listify_stacks_in_4608 [class*=" w-icon-"] {
    font-family: 'webflow-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #listify_stacks_in_4608 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_4608 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_4608 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_4608 .w-icon-arrow-down:before, #listify_stacks_in_4608 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_4608 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_4608 html {
    height: 100%; }
  #listify_stacks_in_4608 body {
    margin: 0;
    min-height: 100%;
    background-color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333; }
  #listify_stacks_in_4608 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_4608 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_4608 .w-block {
    display: block; }
  #listify_stacks_in_4608 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_4608 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4608 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4608 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_4608 .w-hidden {
    display: none; }
  #listify_stacks_in_4608 .w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0; }
  #listify_stacks_in_4608 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_4608 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_4608 .w-webflow-badge {
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: auto;
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    border: 0 none transparent;
    border-radius: 0;
    background: none;
    background-image: none;
    background-position: 0% 0%;
    background-size: auto auto;
    background-repeat: repeat;
    background-origin: padding-box;
    background-clip: border-box;
    background-attachment: scroll;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1.0;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    list-style-type: disc;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
    color: #AAADB0 !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 6px !important;
    font-size: 12px !important;
    opacity: 1.0 !important;
    line-height: 14px !important;
    text-decoration: none !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    white-space: nowrap;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); }
    #listify_stacks_in_4608 .w-webflow-badge * {
      position: static;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
      z-index: auto;
      display: block;
      visibility: visible;
      overflow: visible;
      overflow-x: visible;
      overflow-y: visible;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: auto;
      height: auto;
      max-height: none;
      max-width: none;
      min-height: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      float: none;
      clear: none;
      border: 0 none transparent;
      border-radius: 0;
      background: none;
      background-image: none;
      background-position: 0% 0%;
      background-size: auto auto;
      background-repeat: repeat;
      background-origin: padding-box;
      background-clip: border-box;
      background-attachment: scroll;
      background-color: transparent;
      -webkit-box-shadow: none;
      box-shadow: none;
      opacity: 1.0;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: none;
      transition: none;
      direction: ltr;
      font-family: inherit;
      font-weight: inherit;
      color: inherit;
      font-size: inherit;
      line-height: inherit;
      font-style: inherit;
      font-variant: inherit;
      text-align: inherit;
      letter-spacing: inherit;
      text-decoration: inherit;
      text-indent: 0;
      text-transform: inherit;
      list-style-type: disc;
      text-shadow: none;
      font-smoothing: auto;
      vertical-align: baseline;
      cursor: inherit;
      white-space: inherit;
      word-break: normal;
      word-spacing: normal;
      word-wrap: normal; }
    #listify_stacks_in_4608 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_4608 h1, #listify_stacks_in_4608 h2, #listify_stacks_in_4608 h3, #listify_stacks_in_4608 h4, #listify_stacks_in_4608 h5, #listify_stacks_in_4608 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_4608 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_4608 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_4608 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_4608 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_4608 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_4608 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_4608 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_4608 a:focus {
    outline: 0; }
  #listify_stacks_in_4608 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_4608 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_4608 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_4608 ul, #listify_stacks_in_4608 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_4608 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_4608 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4608 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4608 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_4608 .w-video iframe, #listify_stacks_in_4608 .w-video object, #listify_stacks_in_4608 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_4608 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_4608 button, #listify_stacks_in_4608 html input[type="button"], #listify_stacks_in_4608 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_4608 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_4608 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_4608 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_4608 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_4608 .w-input, #listify_stacks_in_4608 .w-select {
    display: block;
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc; }
  #listify_stacks_in_4608 .w-input:-moz-placeholder, #listify_stacks_in_4608 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_4608 .w-input::-moz-placeholder, #listify_stacks_in_4608 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_4608 .w-input:-ms-input-placeholder, #listify_stacks_in_4608 .w-select:-ms-input-placeholder, #listify_stacks_in_4608 .w-input::-webkit-input-placeholder, #listify_stacks_in_4608 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_4608 .w-input:focus, #listify_stacks_in_4608 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_4608 .w-input[disabled], #listify_stacks_in_4608 .w-select[disabled], #listify_stacks_in_4608 .w-input[readonly], #listify_stacks_in_4608 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_4608 fieldset[disabled] .w-input, #listify_stacks_in_4608 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_4608 textarea.w-input, #listify_stacks_in_4608 textarea.w-select {
    height: auto; }
  #listify_stacks_in_4608 .w-select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f3f3f3));
    background-image: linear-gradient(white 0%, #f3f3f3 100%); }
    #listify_stacks_in_4608 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_4608 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_4608 .w-checkbox, #listify_stacks_in_4608 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_4608 .w-checkbox:before, #listify_stacks_in_4608 .w-radio:before, #listify_stacks_in_4608 .w-checkbox:after, #listify_stacks_in_4608 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_4608 .w-checkbox:after, #listify_stacks_in_4608 .w-radio:after {
    clear: both; }
  #listify_stacks_in_4608 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_4608 .w-radio-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px;
    margin-top: 3px; }
  #listify_stacks_in_4608 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_4608 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_4608 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_4608 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_4608 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4608 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4608 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_4608 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_4608 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_4608 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_4608 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_4608 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_4608 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_4608 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_4608 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_4608 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_4608 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_4608 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_4608 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_4608 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_4608 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_4608 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_4608 .w-container {
      max-width: 728px; }
    #listify_stacks_in_4608 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_4608 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_4608 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_4608 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_4608 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_4608 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_4608 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_4608 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_4608 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_4608 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_4608 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_4608 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_4608 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_4608 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_4608 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_4608 .w-hidden-main, #listify_stacks_in_4608 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_4608 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_4608 .w-row, #listify_stacks_in_4608 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_4608 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_4608 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_4608 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_4608 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_4608 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_4608 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_4608 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_4608 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_4608 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_4608 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_4608 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_4608 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_4608 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4608 .w-container {
      max-width: none; }
    #listify_stacks_in_4608 .w-hidden-main, #listify_stacks_in_4608 .w-hidden-medium, #listify_stacks_in_4608 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_4608 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_4608 .w-col {
      width: 100%; }
    #listify_stacks_in_4608 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_4608 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_4608 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_4608 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_4608 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_4608 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_4608 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_4608 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_4608 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_4608 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_4608 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_4608 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_4608 .w-widget {
    position: relative; }
  #listify_stacks_in_4608 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_4608 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_4608 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_4608 .w-widget-map .gm-style-iw {
      width: 90% !important;
      height: auto !important;
      top: 7px !important;
      left: 6% !important;
      display: inline;
      text-align: center;
      overflow: hidden; }
      #listify_stacks_in_4608 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_4608 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_4608 .w-widget-twitter-count-shim {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 28px;
    height: 20px;
    text-align: center;
    background: white;
    border: #758696 solid 1px;
    border-radius: 3px; }
    #listify_stacks_in_4608 .w-widget-twitter-count-shim * {
      pointer-events: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    #listify_stacks_in_4608 .w-widget-twitter-count-shim .w-widget-twitter-count-inner {
      position: relative;
      font-size: 15px;
      line-height: 12px;
      text-align: center;
      color: #999;
      font-family: serif; }
    #listify_stacks_in_4608 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_4608 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_4608 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_4608 .w-widget-twitter-count-shim:not(.w--vertical):after {
        top: 50%;
        left: 0;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim:not(.w--vertical):before {
        border-color: rgba(117, 134, 150, 0);
        border-right-color: #5d6c7b;
        border-width: 4px;
        margin-left: -9px;
        margin-top: -4px; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim:not(.w--vertical):after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: white;
        border-width: 4px;
        margin-left: -8px;
        margin-top: -4px; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_4608 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_4608 .w-widget-twitter-count-shim.w--vertical:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim.w--vertical:before {
        border-color: rgba(117, 134, 150, 0);
        border-top-color: #5d6c7b;
        border-width: 5px;
        margin-left: -5px; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim.w--vertical:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: white;
        border-width: 4px;
        margin-left: -4px; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_4608 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_4608 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_4608 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_4608 .w-background-video > video {
      background-size: cover;
      background-position: 50% 50%;
      position: absolute;
      right: -100%;
      bottom: -100%;
      top: -100%;
      left: -100%;
      margin: auto;
      min-width: 100%;
      min-height: 100%;
      z-index: -100; }
  #listify_stacks_in_4608 .w-slider {
    position: relative;
    height: 300px;
    text-align: center;
    background: #dddddd;
    clear: both;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
  #listify_stacks_in_4608 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_4608 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_4608 .w-slider-nav {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding-top: 10px;
    height: 40px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent; }
    #listify_stacks_in_4608 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_4608 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_4608 .w-slider-nav.w-shadow > div {
      -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
      box-shadow: 0 0 3px rgba(51, 51, 51, 0.4); }
  #listify_stacks_in_4608 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_4608 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_4608 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_4608 .w-slider-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin: 0 3px 0.5em;
    -webkit-transition: background-color 100ms, color 100ms;
    transition: background-color 100ms, color 100ms; }
    #listify_stacks_in_4608 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_4608 .w-slider-arrow-left, #listify_stacks_in_4608 .w-slider-arrow-right {
    position: absolute;
    width: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
    color: white;
    font-size: 40px;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #listify_stacks_in_4608 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_4608 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_4608 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_4608 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_4608 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_4608 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_4608 .w-icon-slider-left, #listify_stacks_in_4608 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_4608 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_4608 .w-dropdown-btn, #listify_stacks_in_4608 .w-dropdown-toggle, #listify_stacks_in_4608 .w-dropdown-link {
    position: relative;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; }
  #listify_stacks_in_4608 .w-dropdown-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    cursor: pointer;
    padding-right: 40px; }
    #listify_stacks_in_4608 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_4608 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_4608 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_4608 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_4608 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_4608 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_4608 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_4608 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_4608 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_4608 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_4608 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_4608 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_4608 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_4608 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_4608 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_4608 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4608 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_4608 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_4608 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_4608 .w-lightbox-backdrop {
    color: #000;
    cursor: auto;
    font-family: serif;
    font-size: medium;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    list-style: disc;
    text-align: start;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    outline: 0;
    /* 1 */
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate(0, 0);
    /* 2 */
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_4608 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_4608 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_4608 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_4608 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_4608 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_4608 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_4608 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_4608 .w-lightbox-frame, #listify_stacks_in_4608 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_4608 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_4608 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_4608 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_4608 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_4608 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_4608 .w-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  #listify_stacks_in_4608 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_4608 .w-lightbox-control {
    position: absolute;
    top: 0;
    width: 4em;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s; }
  #listify_stacks_in_4608 .w-lightbox-left {
    display: none;
    bottom: 0;
    left: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg=="); }
  #listify_stacks_in_4608 .w-lightbox-right {
    display: none;
    right: 0;
    bottom: 0;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+"); }
  #listify_stacks_in_4608 .w-lightbox-close {
    right: 0;
    height: 2.6em;
    /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
    background-size: 18px; }
  #listify_stacks_in_4608 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_4608 .w-lightbox-item {
    display: inline-block;
    width: 10vh;
    padding: 2vh 1vh;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    /* 2 */ }
  #listify_stacks_in_4608 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_4608 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_4608 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_4608 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_4608 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_4608 .w-lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border: 5px solid rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    -webkit-animation: spin .8s infinite linear;
    animation: spin .8s infinite linear; }
    #listify_stacks_in_4608 .w-lightbox-spinner:after {
      content: "";
      position: absolute;
      top: -4px;
      right: -4px;
      bottom: -4px;
      left: -4px;
      border: 3px solid transparent;
      border-bottom-color: #fff;
      border-radius: 50%; }
  #listify_stacks_in_4608 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_4608 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_4608 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_4608 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_4608 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_4608 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_4608 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_4608 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_4608 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_4608 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_4608 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_4608 .w-lightbox-left, #listify_stacks_in_4608 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_4608 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_4608 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_4608 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_4608 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_4608 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_4608 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_4608 .w-richtext ol, #listify_stacks_in_4608 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_4608 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_4608 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_4608 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_4608 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_4608 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_4608 .w-richtext figure[data-rt-type="video"] > div:before {
      content: '';
      position: absolute;
      display: none;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
    #listify_stacks_in_4608 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_4608 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_4608 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_4608 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_4608 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_4608 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_4608 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_4608 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_4608 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_4608 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_4608 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_4608 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-align-fullwidth {
      width: 100%;
      max-width: 100%;
      text-align: center;
      clear: both;
      display: block;
      margin-right: auto;
      margin-left: auto; }
      #listify_stacks_in_4608 .w-richtext figure.w-richtext-align-fullwidth > div {
        display: inline-block;
        /* padding-bottom is used for aspect ratios in video figures
           *  we want the div to inherit that so hover/selection borders in the designer-canvas
           *  fit right */
        padding-bottom: inherit; }
      #listify_stacks_in_4608 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_4608 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_4608 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_4608 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_4608 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_4608 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_4608 .w-nav-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    color: #222222;
    padding: 20px;
    text-align: left;
    margin-left: auto;
    margin-right: auto; }
    #listify_stacks_in_4608 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_4608 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_4608 .w--nav-menu-open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #C8C8C8;
    text-align: center;
    overflow: visible;
    min-width: 200px; }
  #listify_stacks_in_4608 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_4608 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_4608 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_4608 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4608 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4608 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4608 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_4608 .w-nav-button {
    position: relative;
    float: right;
    padding: 18px;
    font-size: 24px;
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #listify_stacks_in_4608 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_4608 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_4608 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_4608 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_4608 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_4608 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_4608 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_4608 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4608 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_4608 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_4608 .w-tabs {
    position: relative; }
    #listify_stacks_in_4608 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_4608 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_4608 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_4608 .w-tab-link {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 9px 30px;
    text-align: left;
    cursor: pointer;
    color: #222222;
    background-color: #dddddd; }
    #listify_stacks_in_4608 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_4608 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_4608 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_4608 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_4608 .w-tab-link {
      display: block; } }
  #listify_stacks_in_4608 .w-ix-emptyfix:after {
    content: ""; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  #listify_stacks_in_4608 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_4608 .w-dyn-bind-empty, #listify_stacks_in_4608 .w-condition-invisible {
    display: none !important; }

.list-container {
  margin-top: 0px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex; }

.section {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 0px;
  position: absolute;
  padding-bottom: 0px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox; }
  .section.main {
    display: none; }

.container {
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center; }

#listify_stacks_in_4608 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_4608 .list {
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px 0px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    background: rgba(236, 239, 241, 1.00);
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_4608 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_4608 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4608 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4608 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4608 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4608 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4608 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4608 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4608 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4608 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4608 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_4608 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_4608 .list-item-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    border-radius: 5px;
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listify_stacks_in_4608 .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 2px;
    line-height: 1;
    border-radius: 40px;
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_4608 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_4608 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_4608 .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -ms-grid-row-align: center;
        align-self: center;
    word-wrap: break-word;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
    #listify_stacks_in_4608 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_4608 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_4608.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_4608.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_4608.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4609.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4609.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4609.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4609.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4609.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 10px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4609.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4609.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4609.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4609.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4609.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4609.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4609.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4611.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4611.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4611.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4611.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4611.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4611.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4611.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4611.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4611.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4611.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4611.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4611.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4615.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4615.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4615.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4615.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4615.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4615.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4615.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4615.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4615.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4615.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4615.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4615.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4619.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4619.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4619.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4619.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4619.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4619.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4619.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4619.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4619.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4619.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4619.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4619.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4621.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4621.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4621.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4621.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4621.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4621.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4621.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4621.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4621.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4621.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4621.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4621.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4623.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4623.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4623.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4623.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4623.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4623.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4623.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4623.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 11px;
    line-height: 17px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4623.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4623.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4623.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4623.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4625.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4625.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4625.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4625.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4625.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4625.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4625.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4625.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4625.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4625.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4625.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4625.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4627.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4627.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4627.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4627.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4627.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4627.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4627.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4627.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4627.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4627.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4627.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4627.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4629.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4629.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4629.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4629.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4629.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4629.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4629.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4629.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4629.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4629.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4629.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4629.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4631.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4631.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4631.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4631.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4631.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4631.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4631.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4631.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4631.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4631.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4631.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4631.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4633.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4633.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4633.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4633.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4633.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4633.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4633.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4633.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 13px;
    line-height: 19px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4633.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4633.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4633.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4633.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4635.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4635.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4635.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4635.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4635.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4635.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4635.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4635.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4635.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4635.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4635.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4635.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4637.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4637.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4637.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4637.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4637.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4637.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4637.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4637.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4637.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4637.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4637.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4637.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4639.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4639.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4639.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4639.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4639.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4639.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4639.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4639.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4639.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4639.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4639.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4639.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4641.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4641.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4641.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4641.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4641.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4641.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4641.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4641.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4641.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4641.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4641.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4641.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4643.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4643.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4643.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4643.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4643.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4643.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4643.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4643.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4643.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4643.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4643.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4643.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4645.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4645.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4645.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4645.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4645.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4645.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4645.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4645.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4645.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4645.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4645.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4645.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4647.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4647.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4647.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4647.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4647.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4647.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4647.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4647.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4647.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4647.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4647.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4647.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4649.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4649.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4649.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4649.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4649.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4649.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4649.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4649.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4649.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4649.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4649.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4649.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4651.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4651.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4651.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4651.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4651.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4651.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4651.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4651.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4651.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4651.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4651.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4651.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4653.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4653.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4653.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4653.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4653.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4653.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4653.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4653.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4653.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4653.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4653.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4653.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4655.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4655.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4655.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4655.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4655.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4655.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4655.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4655.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4655.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4655.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4655.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4655.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4657.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4657.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_4657.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4657.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4657.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 8px 0px 8px;
  border-radius: 5px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4657.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: block !important;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    /*  */
    background: rgba(82, 190, 40, 1.00);
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4657.list-item .list-item-inner .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4657.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4657.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4657.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4657.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4657.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_4659.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_4659.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_4659.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_4659.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_4659.list-item .list-item-inner {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-decoration: none;
  margin: 0px auto 0px auto;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */ }
  #listifyItem_stacks_in_4659.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -ms-flex: 0 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    vertical-align: middle;
    padding: 5px;
    line-height: 1;
    border-radius: 50px;
    /*  */
    display: none;
    /*  */
    /*  */
    margin-right: 5px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    /*  */
    /*  */
    /*  */
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    /*  */
    /*  */
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4659.list-item .list-item-inner .list-item-icon i {
    color: rgba(232, 235, 238, 1.00);
    font-size: 20px;
    vertical-align: middle;
    /*  */ }
  #listifyItem_stacks_in_4659.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-row-align: center;
        align-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    color: rgba(0, 0, 0, 1.00);
    font-size: 12px;
    line-height: 18px;
    font-family: inherit;
    /*  */
    display: block !important;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }
  #listifyItem_stacks_in_4659.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_4659.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_4659.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_4659.hide-d {
    display: none; } }

/*  */




#stacks_in_5774-wrapper {
	font-weight: 400;
}

/* Add a little space after numbers for numbered items */
#stacks_in_5774-wrapper.list-group-numbered > li::before {
	margin-right: 5px;
}


/* Base Margins */
#stacks_in_5774-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_5774-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_5774-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_5774-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_5774-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_5774-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_in_5774-wrapper {
  --bs-accordion-color: #000;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}






/* Plus & Close */
#stacks_in_5774-wrapper .accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(13, 75, 161, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
}

#stacks_in_5774-wrapper .accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(46, 49, 53, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
	transform: rotate(135deg);
}

#stacks_in_5774-wrapper .list-group-item:hover.accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(192, 195, 195, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
}

#stacks_in_5774-wrapper .list-group-item:hover.accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(192, 195, 195, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
	transform: rotate(135deg);
}








#stacks_in_5774-wrapper .list-group-item {
	color: rgba(13, 75, 161, 1.00);
	
	background-color: transparent;
	
	

	
	
	border-color: rgba(225, 230, 225, 0.00);
	
}

#stacks_in_5774-wrapper .list-group-item:hover,
#stacks_in_5774-wrapper .list-group-item.active {
	color: rgba(192, 195, 195, 1.00) !important;
	
	
	background-color: rgba(222, 226, 230, 0.00) !important;
	
} 

#stacks_in_5774-wrapper .accordion-button:not(.collapsed) {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-200) !important;
	
	
	
	box-shadow: inset 0px -1px 0px 0px var(--bs-gray-300) !important;
	
	
} 

#stacks_in_5774-wrapper .accordion-collapse .list-group-item {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-100);
	
	
	
}

#stacks_in_5774-wrapper .accordion-collapse .item-inner-wrapper {
	
	padding-left: 12px;
	
}


#stacks_in_5774-wrapper.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_5774-wrapper.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_5774-wrapper,
#stacks_in_5774-wrapper.custom-shadow,
#stacks_in_5774-wrapper.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}



.stacks_in_5775-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_5775-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_5775-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_5775-fdy-item .list-group-icons {
		
}

.stacks_in_5775-fdy-item:hover .list-group-icons {
		
}


.stacks_in_5777-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_5777-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_5777-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_5777-fdy-item .list-group-icons {
		
}

.stacks_in_5777-fdy-item:hover .list-group-icons {
		
}


.stacks_in_5778-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_5778-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_5778-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_5778-fdy-item .list-group-icons {
		
}

.stacks_in_5778-fdy-item:hover .list-group-icons {
		
}


.stacks_in_5779-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_5779-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_5779-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_5779-fdy-item .list-group-icons {
		
}

.stacks_in_5779-fdy-item:hover .list-group-icons {
		
}



#stacks_in_1151-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1151-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1151-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1151-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_1154-wrapper,
#stacks_in_1154-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1154-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1154-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1154-wrapper {
	background-position: center center;
}


#stacks_in_1154-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1154-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1154-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1154-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1154-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1154-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1154-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1154-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1154-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1154-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1154-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_1154-wrapper.bkg-solid-color {
	background: rgba(255, 255, 255, 0.00);
}

#stacks_in_1154-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_1154-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_1154-wrapper.custom-corners,
#stacks_in_1154-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1154-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1154-wrapper > .bkg-overlay.solid {
	background: rgba(255, 255, 255, 0.83);
}


#stacks_in_1154-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_1154-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_1154-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1156-wrapper {
	
}

#stacks_in_1156-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_1156-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_1156-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_1156-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_1156-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_1158-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1158-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1158-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1158-margins.padding-advanced {
	padding: 5.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1158-margins.padding-advanced {
		padding: 5.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_1158-margins.padding-advanced {
		padding: 10.00rem 5.00rem 0.00rem 5.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_1160-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_1160-wrapper .card-header {
	
	
	background-color: rgba(255, 255, 255, 0.00);
	
}

#stacks_in_1160-wrapper.custom-radius,
#stacks_in_1160-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_1160-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_1160-wrapper .card-body {
	
	
	background: rgba(174, 215, 248, 0.20);
	
}



#stacks_in_1160-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_1160-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_1160-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_1160-wrapper .custom-radius.card-footer {
	border-bottom-left-radius: 10px !important;
	border-bottom-right-radius: 10px !important;
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
}


#stacks_in_1160-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_1160-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_1160-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_1160-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_1160-wrapper .card-header h1,
#stacks_in_1160-wrapper .card-header h2,
#stacks_in_1160-wrapper .card-header h3,
#stacks_in_1160-wrapper .card-header h4,
#stacks_in_1160-wrapper .card-header h5,
#stacks_in_1160-wrapper .card-header h6,
#stacks_in_1160-wrapper .card-header p:last-of-type,
#stacks_in_1160-wrapper .card-header small,
#stacks_in_1160-wrapper .card-footer h1,
#stacks_in_1160-wrapper .card-footer h2,
#stacks_in_1160-wrapper .card-footer h3,
#stacks_in_1160-wrapper .card-footer h4,
#stacks_in_1160-wrapper .card-footer h5,
#stacks_in_1160-wrapper .card-footer h6,
#stacks_in_1160-wrapper .card-footer p:last-of-type,
#stacks_in_1160-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_1160-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_1160-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_1160-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_1160-wrapper.card,
#stacks_in_1160-wrapper.card.custom-shadow,
#stacks_in_1160-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_1160-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_1160-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_1160-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1160-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1160-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1160-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1160-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1160-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_1160-wrapper img {
 	margin: 0 !important;
 }
 


#stacks_in_1167-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1167-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1167-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1167-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}
 #stacks_in_1169.blu-svg{text-align:center}#stacks_in_1169.blu-svg svg{width:96.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_1169.blu-svg{text-align:center}#stacks_in_1169.blu-svg svg{width:126.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_1169.blu-svg{text-align:center}#stacks_in_1169.blu-svg svg{width:136.00px}}@media screen and (min-width:1000px){#stacks_in_1169.blu-svg{text-align:center}#stacks_in_1169.blu-svg svg{width:146.00px}}  #stacks_in_1169.blu-svg svg rectange,#stacks_in_1169.blu-svg svg circle,#stacks_in_1169.blu-svg svg ellipse,#stacks_in_1169.blu-svg svg polygon,#stacks_in_1169.blu-svg svg polyline,#stacks_in_1169.blu-svg svg path{fill:rgba(13, 75, 161, 0.25)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_1169.blu-svg svg:hover rectange,#stacks_in_1169.blu-svg svg:hover circle,#stacks_in_1169.blu-svg svg:hover ellipse,#stacks_in_1169.blu-svg svg:hover polygon,#stacks_in_1169.blu-svg svg:hover polyline,#stacks_in_1169.blu-svg svg:hover path{fill:rgba(13, 75, 161, 1.00)!important} #stacks_in_1169.blu-svg{float:none}#stacks_in_1169 a,#stacks_in_1169 svg{cursor:auto}



#stacks_in_1172-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1172-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_1172-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1172-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_2950-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	text-shadow: 2px 5px 1px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_2950-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_2950-header {
	margin-bottom: 0;
}






.stacks_in_2950-header {
	font-size: 2.50rem;
}

@media (min-width: 576px) {
	.stacks_in_2950-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_2950-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_2950-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2950-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2950-header {
		font-size: 3.00rem;
	}
}



h3.stacks_in_1173-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 2px rgba(13, 75, 161, 1.00);
	
	
	
}

h3.stacks_in_1173-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1173-header {
	margin-bottom: 0;
}






.stacks_in_1173-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_1173-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1173-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1173-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1173-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1173-header {
		font-size: 2.00rem;
	}
}




/* Base Margins */
.stacks_in_1182.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1182.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1182.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1182.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1182.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1182.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_1182.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_1182.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_1182.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1182.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_1162-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1162-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1162-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1162-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1162-margins.padding-advanced {
		padding: 0.00rem 5.00rem 0.00rem 5.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_1162-margins.padding-advanced {
		padding: 0.00rem 10.00rem 0.00rem 10.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1164-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









	#stacks_in_1164-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1184-wrapper {
	
	
	
}

#stacks_in_1184-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_1184-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_1184-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1184-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1184-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1184-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1184-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1184-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_1176-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1176-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1176-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_1176-margins.padding-advanced {
	padding: 2.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1176-margins.padding-advanced {
		padding: 2.00rem 5.00rem 2.00rem 5.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_1176-margins.padding-advanced {
		padding: 2.00rem 10.00rem 5.00rem 10.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}






h3.stacks_in_2895-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	text-shadow: 2px 5px 1px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_2895-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_2895-header {
	margin-bottom: 0;
}






.stacks_in_2895-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_2895-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_2895-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_2895-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2895-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2895-header {
		font-size: 2.00rem;
	}
}



#stacks_in_2952-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2952-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2952-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2952-margins.padding-advanced {
	padding: 1.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}


.stacks_in_2898-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_2898-list {
	
	
	
	color: rgba(80, 131, 171, 1.00) !important;
	
}

.stacks_in_2898-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_2898-list a,
.stacks_in_2898-list a:visited,
.stacks_in_2898-list a:hover,
.stacks_in_2898-list a:active {
	text-decoration: none;
}

.stacks_in_2898-list a,
.stacks_in_2898-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_2898-list a:hover,
.stacks_in_2898-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_2898-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_2898-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_2898-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_2898-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_2898-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_2898-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_2898-list .list-inline-item:not(:last-child) {

}

.stacks_in_2898-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_2898-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_2899-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2899-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2901-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2901-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2902-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2902-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2903-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2903-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h3.stacks_in_2912-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	text-shadow: 2px 5px 1px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_2912-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_2912-header {
	margin-bottom: 0;
}






.stacks_in_2912-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_2912-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_2912-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_2912-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2912-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2912-header {
		font-size: 2.00rem;
	}
}



#stacks_in_2956-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2956-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2956-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2956-margins.padding-advanced {
	padding: 0.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_2957-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2957-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2957-wrapper a,
#stacks_in_2957-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2957-wrapper a:hover,
#stacks_in_2957-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2957-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_2917-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_2917-list {
	
	
	
	color: rgba(80, 131, 171, 1.00) !important;
	
}

.stacks_in_2917-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_2917-list a,
.stacks_in_2917-list a:visited,
.stacks_in_2917-list a:hover,
.stacks_in_2917-list a:active {
	text-decoration: none;
}

.stacks_in_2917-list a,
.stacks_in_2917-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_2917-list a:hover,
.stacks_in_2917-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_2917-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_2917-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_2917-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_2917-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_2917-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_2917-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_2917-list .list-inline-item:not(:last-child) {

}

.stacks_in_2917-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_2917-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_2918-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2918-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2920-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2920-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2921-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2921-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2922-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2922-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h3.stacks_in_2931-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	text-shadow: 2px 5px 1px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_2931-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_2931-header {
	margin-bottom: 0;
}






.stacks_in_2931-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_2931-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_2931-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_2931-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2931-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2931-header {
		font-size: 2.00rem;
	}
}



#stacks_in_2954-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2954-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2954-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2954-margins.padding-advanced {
	padding: 0.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_2934-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2934-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2934-wrapper a,
#stacks_in_2934-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2934-wrapper a:hover,
#stacks_in_2934-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2934-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_2936-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_2936-list {
	
	
	
	color: rgba(80, 131, 171, 1.00) !important;
	
}

.stacks_in_2936-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_2936-list a,
.stacks_in_2936-list a:visited,
.stacks_in_2936-list a:hover,
.stacks_in_2936-list a:active {
	text-decoration: none;
}

.stacks_in_2936-list a,
.stacks_in_2936-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_2936-list a:hover,
.stacks_in_2936-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_2936-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_2936-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_2936-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_2936-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_2936-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_2936-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_2936-list .list-inline-item:not(:last-child) {

}

.stacks_in_2936-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_2936-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_2937-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2937-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2939-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2939-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2940-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2940-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2941-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2941-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2942-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2942-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2943-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2943-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h3.stacks_in_2880-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	text-shadow: 2px 5px 1px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_2880-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_2880-header {
	margin-bottom: 0;
}






.stacks_in_2880-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_2880-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_2880-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_2880-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_2880-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_2880-header {
		font-size: 2.00rem;
	}
}



#stacks_in_2960-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2960-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2960-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2960-margins.padding-advanced {
	padding: 0.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_2944-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2944-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2944-wrapper a,
#stacks_in_2944-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2944-wrapper a:hover,
#stacks_in_2944-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2944-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_2882-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_2882-list {
	
	
	
	color: rgba(80, 131, 171, 1.00) !important;
	
}

.stacks_in_2882-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_2882-list a,
.stacks_in_2882-list a:visited,
.stacks_in_2882-list a:hover,
.stacks_in_2882-list a:active {
	text-decoration: none;
}

.stacks_in_2882-list a,
.stacks_in_2882-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_2882-list a:hover,
.stacks_in_2882-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_2882-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_2882-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_2882-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_2882-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_2882-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_2882-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_2882-list .list-inline-item:not(:last-child) {

}

.stacks_in_2882-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_2882-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_2924-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2924-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2923-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2923-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2926-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2926-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_2925-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_2925-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_2948-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_2948-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_2948-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_2948-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_2904-wrapper {
	
	
	
		
		color: rgba(80, 131, 171, 1.00);
		
		
	
}


#stacks_in_2904-wrapper {
	color: rgba(80, 131, 171, 1.00);
}

#stacks_in_2904-wrapper a,
#stacks_in_2904-wrapper a:visited {
	color: rgba(12, 110, 254, 1.00);
}

#stacks_in_2904-wrapper a:hover,
#stacks_in_2904-wrapper a:active {
	color: rgba(11, 88, 202, 1.00);
}








	#stacks_in_2904-wrapper p:last-of-type {
		margin-bottom: 0;
	}






#stacks_in_3896-rainbow-bar {
	overflow: hidden;
	width: 100%;
	
	
}

 


	#stacks_in_3896-rainbow-bar span.rb-item {
		display: block;
		height: 5.00px;
		width: 100%;
		
		float: left;
		
	}
	
	
	
	
	
	
	
	#stacks_in_3896-rainbow-bar span.rb-item:nth-child(1) {
		width: 100%;
		
		background-color: var(--bs-primary);
		
		
		
	}
	
	#stacks_in_3896-rainbow-bar span.rb-item:nth-child(2) {
		width: 0%;
		
		background-color: var(--bs-indigo);
		
		
		
	}
	
	#stacks_in_3896-rainbow-bar span.rb-item:nth-child(3) {
		width: 0%;
		
		background-color: var(--bs-purple);
		
		
		
	}
	
	#stacks_in_3896-rainbow-bar span.rb-item:nth-child(4) {
		width: 0%;
		
		background-color: var(--bs-pink);
		
		
		
	}
	
	#stacks_in_3896-rainbow-bar span.rb-item:nth-child(5) {
		width: 0%;
		
		background-color: var(--bs-red);
		
		
		
	}
	
	#stacks_in_3896-rainbow-bar span.rb-item:nth-child(6) {
		width: 0%;
		
		background-color: var(--bs-orange);
		
		
		
	}
	
	#stacks_in_3896-rainbow-bar span.rb-item:nth-child(7) {
		width: 0%;
		
		background-color: var(--bs-yellow);
		
		
		
	}
	
	#stacks_in_3896-rainbow-bar span.rb-item:nth-child(8) {
		width: 0%;
		
		background-color: var(--bs-green);
		
		
		
	}
	
	#stacks_in_3896-rainbow-bar span.rb-item:nth-child(9) {
		width: 0%;
		
		background-color: var(--bs-teal);
		
		
		
	}
	
	#stacks_in_3896-rainbow-bar span.rb-item:nth-child(10) {
		width: 0%;
		
		background-color: var(--bs-cyan);
		
		
		
	}
	



.stacks_in_3897-container {
	
	
	

	
	
	

}








#stacks_in_3900-wrapper,
#stacks_in_3900-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_3900-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_3900-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_3900-wrapper {
	background-position: center center;
}


#stacks_in_3900-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_3900-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_3900-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_3900-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_3900-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_3900-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_3900-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_3900-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_3900-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_3900-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_3900-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_3900-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_3900-wrapper.bkg-gradient-two {
	background: rgba(83, 135, 183, 0.50);
	background: linear-gradient(0deg, rgba(83, 135, 183, 0.50) 0%, rgba(83, 135, 183, 0.75) 100%);
}

#stacks_in_3900-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_3900-wrapper.custom-corners,
#stacks_in_3900-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_3900-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_3900-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_3900-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_3900-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_3900-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_3902-wrapper {
	
}

#stacks_in_3902-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_3902-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_3902-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_3902-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_3902-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_3904-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3904-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3904-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3904-margins.padding-advanced {
	padding: 5.00rem 0.00rem 5.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3904-margins.padding-advanced {
		padding: 7.00rem 0.00rem 7.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_3906-wrapper .col {
		
	}
	
}





#stacks_in_3910-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3910-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3910-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3910-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_3910-margins.padding-advanced {
		padding: 0.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h3.stacks_in_3912-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_3912-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_3912-header {
	margin-bottom: 0;
}






.stacks_in_3912-header {
	font-size: 1.95rem;
}

@media (min-width: 576px) {
	.stacks_in_3912-header {
		font-size: 1.95rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_3912-header {
		font-size: 1.85rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_3912-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_3912-header {
		font-size: 3.50rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_3912-header {
		font-size: 3.50rem;
	}
}



#stacks_in_3915-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









	#stacks_in_3915-wrapper p:last-of-type {
		margin-bottom: 0;
	}





.stacks_in_8738-container {
	
	
	

	
	
	
	display: grid;
    grid-auto-flow: column;
		
		
			
			align-content: ;
			
			justify-content: center;
		
	

}









#stacks_in_8746-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8746-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8746-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8746-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3918-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3918-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3918-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3918-margins.padding-advanced {
	padding: 1.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3955-wrapper {
	
	
	
		
		
		color: var(--bs-success);
		
	
}







#stacks_in_3955-wrapper {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	#stacks_in_3955-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_3955-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_3955-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_3955-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_3955-wrapper {
		font-size: 1.40rem;
	}
}



	#stacks_in_3955-wrapper p:last-of-type {
		margin-bottom: 0;
	}






#stacks_in_8740-wrapper {
	font-weight: 400;
}

/* Add a little space after numbers for numbered items */
#stacks_in_8740-wrapper.list-group-numbered > li::before {
	margin-right: 5px;
}


/* Base Margins */
#stacks_in_8740-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8740-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8740-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8740-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8740-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8740-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_in_8740-wrapper {
  --bs-accordion-color: #000;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}






/* Plus & Close */
#stacks_in_8740-wrapper .accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(13, 75, 161, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
}

#stacks_in_8740-wrapper .accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(46, 49, 53, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
	transform: rotate(135deg);
}

#stacks_in_8740-wrapper .list-group-item:hover.accordion-button::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(192, 195, 195, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
}

#stacks_in_8740-wrapper .list-group-item:hover.accordion-button:not(.collapsed)::after {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgba(192, 195, 195, 1.00)" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z"/></svg>') !important;
	transform: rotate(135deg);
}








#stacks_in_8740-wrapper .list-group-item {
	color: rgba(13, 75, 161, 1.00);
	
	background-color: transparent;
	
	

	
	
	border-color: rgba(225, 230, 225, 0.00);
	
}

#stacks_in_8740-wrapper .list-group-item:hover,
#stacks_in_8740-wrapper .list-group-item.active {
	color: rgba(192, 195, 195, 1.00) !important;
	
	
	background-color: rgba(222, 226, 230, 0.00) !important;
	
} 

#stacks_in_8740-wrapper .accordion-button:not(.collapsed) {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-200) !important;
	
	
	
	box-shadow: inset 0px -1px 0px 0px var(--bs-gray-300) !important;
	
	
} 

#stacks_in_8740-wrapper .accordion-collapse .list-group-item {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-100);
	
	
	
}

#stacks_in_8740-wrapper .accordion-collapse .item-inner-wrapper {
	
	padding-left: 12px;
	
}


#stacks_in_8740-wrapper.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8740-wrapper.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_8740-wrapper,
#stacks_in_8740-wrapper.custom-shadow,
#stacks_in_8740-wrapper.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}



.stacks_in_8741-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_8741-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_8741-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_8741-fdy-item .list-group-icons {
		
}

.stacks_in_8741-fdy-item:hover .list-group-icons {
		
}


.stacks_in_8743-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_8743-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_8743-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_8743-fdy-item .list-group-icons {
		
}

.stacks_in_8743-fdy-item:hover .list-group-icons {
		
}


.stacks_in_8744-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_8744-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_8744-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_8744-fdy-item .list-group-icons {
		
}

.stacks_in_8744-fdy-item:hover .list-group-icons {
		
}


.stacks_in_8745-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_8745-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_8745-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_8745-fdy-item .list-group-icons {
		
}

.stacks_in_8745-fdy-item:hover .list-group-icons {
		
}



.stacks_in_3923-container {
	
	
	

	
	
	
	display: grid;
    grid-auto-flow: column;
		
		
			
			align-content: center;
			
			justify-content: center;
		
	

}









	#stacks_in_3924-wrapper > .row > .col {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	




@media (max-width: 575px) {
	
	#stacks_in_3924-wrapper .col {
		
	}
	
}




	.col.stacks_in_3926-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	



.stacks_in_3928-button,
.stacks_in_3928-button:focus {
	
}




.stacks_in_3928-button,
.stacks_in_3928-button:focus {
	background: rgba(255, 237, 71, 1.00);
	border-color: rgba(13, 75, 161, 1.00);
	color: rgba(13, 75, 161, 1.00);
	outline: none;
}


.stacks_in_3928-button:hover {
	background: rgba(12, 97, 176, 1.00) !important;
	border-color: rgba(253, 255, 255, 1.00) !important;
	color: rgba(253, 255, 255, 1.00) !important;
}










#stacks_in_3928-wrapper a {
	outline: none;
}

#stacks_in_3928-wrapper .btn {
	
	font-weight: 900;
	
	
}



#stacks_in_3928-wrapper .btn.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3928-wrapper .btn,
#stacks_in_3928-wrapper .btn.custom-shadow,
#stacks_in_3928-wrapper .btn.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3928-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}















	.col.stacks_in_3930-col {
		display: flex;
		flex-direction: column;
		justify-content: center !important;
	}
	
	




#stacks_in_8718-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8718-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8718-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8718-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8718-margins.padding-advanced {
		padding: 1.00rem 10.00rem 1.00rem 10.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_8718-margins.padding-advanced {
		padding: 1.00rem 15.00rem 1.00rem 15.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}


#stacks_in_3931-wrapper,
#stacks_in_3931-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_3931-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_3931-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_3931-wrapper {
	background-position: center center;
}


#stacks_in_3931-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_3931-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_3931-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_3931-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_3931-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_3931-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_3931-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_3931-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_3931-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_3931-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_3931-wrapper.bkg-preset {
	background: var(--bs-white);
}

#stacks_in_3931-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_3931-wrapper.bkg-gradient-two {
	background: rgba(128, 73, 246, 1.00);
	background: linear-gradient(0deg, rgba(128, 73, 246, 1.00) 0%, rgba(35, 19, 101, 1.00) 100%);
}

#stacks_in_3931-wrapper.bkg-gradient-four {
	background: /* newest syntax */
	radial-gradient(circle at 0% 0%, 
		 rgba(147, 103, 248, 1.00), transparent 80%),
	radial-gradient(circle at 100% 0%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 0% 100%, 
		 rgba(35, 19, 101, 1.00), transparent 80%), 
	radial-gradient(circle at 100% 100%, 
		 rgba(147, 103, 248, 1.00), transparent 80%);
}

#stacks_in_3931-wrapper.custom-corners,
#stacks_in_3931-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_3931-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_3931-wrapper > .bkg-overlay.solid {
	background: rgba(255, 255, 255, 1.00);
}


#stacks_in_3931-wrapper > .bkg-overlay.linear-gradient-two {
	background: rgba(77, 26, 176, 0.75);
	/* Linear */
	background: linear-gradient(0deg, rgba(77, 26, 176, 0.75) 0%, rgba(127, 72, 245, 0.75) 100%);

}

#stacks_in_3931-wrapper > .bkg-overlay.radial-gradient-two {
	background: rgba(0, 0, 0, 0.20);
	/* Radial */
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.75) 90%);
}





#stacks_in_3931-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_3933-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			
		
			
		
			 
			border-color: var(--bs-primary) !important;
			

			/* Rounded Corners */
			

}








#stacks_in_8781-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8781-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8781-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8781-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_8781-margins.padding-advanced {
		padding: 1.00rem 2.00rem 1.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_8781-margins.padding-advanced {
		padding: 1.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}






h4.stacks_in_8784-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_8784-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h4.stacks_in_8784-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h4.stacks_in_8784-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h4.stacks_in_8784-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h4.stacks_in_8784-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h4.stacks_in_8784-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h4.stacks_in_8784-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



a.hdr-link-stacks_in_8784,
a.hdr-link-stacks_in_8784:visited,
a.hdr-link-stacks_in_8784:active,
a.hdr-link-stacks_in_8784:hover {
	
	text-decoration: none !important;
	
	outline: none;
}




.stacks_in_8784-header {
	font-size: 1.25rem;
}

@media (min-width: 576px) {
	.stacks_in_8784-header {
		font-size: 1.25rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8784-header {
		font-size: 1.25rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8784-header {
		font-size: 1.25rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8784-header {
		font-size: 1.25rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8784-header {
		font-size: 1.25rem;
	}
}



div.stacks_in_8787-header {
	
	font-weight: 900;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

div.stacks_in_8787-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



div.stacks_in_8787-header {
	margin-bottom: 0;
}






.stacks_in_8787-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_8787-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_8787-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_8787-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_8787-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_8787-header {
		font-size: 2.00rem;
	}
}






#stacks_in_3968-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3968-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3968-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3968-margins.padding-advanced {
	padding: 2.00rem 0.00rem 0.50rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3965-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}







#stacks_in_3965-wrapper {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	#stacks_in_3965-wrapper {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_3965-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_3965-wrapper {
		font-size: 1.40rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_3965-wrapper {
		font-size: 1.50rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_3965-wrapper {
		font-size: 1.50rem;
	}
}



	#stacks_in_3965-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_3970-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3970-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3970-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3970-margins.padding-advanced {
	padding: 0.00rem 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3963-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}




/* Base Margins */
#stacks_in_3963-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_3963-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_3963-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_3963-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_3963-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_3963-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




#stacks_in_3963-wrapper {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_3963-wrapper {
		font-size: 1.10rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_3963-wrapper {
		font-size: 1.10rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_3963-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_3963-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_3963-wrapper {
		font-size: 1.20rem;
	}
}



	#stacks_in_3963-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_3957-wrapper {
	
	
	
		
		
		color: var(--bs-danger);
		
	
}







#stacks_in_3957-wrapper {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_3957-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_3957-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_3957-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_3957-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_3957-wrapper {
		font-size: 1.20rem;
	}
}



	#stacks_in_3957-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_3972-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_3972-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_3972-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_3972-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_3920-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}







#stacks_in_3920-wrapper {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_3920-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_3920-wrapper {
		font-size: 1.10rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_3920-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_3920-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_3920-wrapper {
		font-size: 1.20rem;
	}
}



	#stacks_in_3920-wrapper p:last-of-type {
		margin-bottom: 0;
	}






.stacks_in_3941-button,
.stacks_in_3941-button:focus {
	
}




.stacks_in_3941-button,
.stacks_in_3941-button:focus {
	background: rgba(255, 255, 255, 1.00);
	border-color: rgba(13, 75, 161, 1.00);
	color: rgba(13, 75, 161, 1.00);
	outline: none;
}


.stacks_in_3941-button:hover {
	background: rgba(12, 97, 176, 1.00) !important;
	border-color: rgba(253, 255, 255, 1.00) !important;
	color: rgba(253, 255, 255, 1.00) !important;
}










#stacks_in_3941-wrapper a {
	outline: none;
}

#stacks_in_3941-wrapper .btn {
	
	font-weight: 900;
	
	
}



#stacks_in_3941-wrapper .btn.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_3941-wrapper .btn,
#stacks_in_3941-wrapper .btn.custom-shadow,
#stacks_in_3941-wrapper .btn.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_3941-wrapper .btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}














#stacks_in_8847-wrapper {
	
	max-width: 1200px;
	
}

#stacks_in_8847-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_8847-wrapper.fdy-container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 576px) {
  #stacks_in_8847-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_8847-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_8847-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_8848-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8848-margins.padding-easy-presets {
	/* Padding Settings */
	
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_8848-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8848-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






@media (max-width: 575px) {
	
	#stacks_in_8850-wrapper .col {
		
	}
	
}





#stacks_in_8854-wrapper .badge {
	
	font-weight: 700;
	
}

#stacks_in_8854-wrapper .badge.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_8854-wrapper .badge {
	
	background: var(--bs-secondary);
	
	
	

	
	
	color: rgba(255, 255, 255, 1.00);
}


/* Base Margins */
#stacks_in_8854-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8854-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8854-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8854-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8854-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8854-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_8856-container {
	
	
	

	
	
	
	display: grid;
    grid-auto-flow: column;
		
		
			
			align-content: start;
			
			justify-content: center;
		
	

}








#stacks_in_8857-svg svg {
	
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.33));
	
	display: inline-block;
	
	
	
		
		
		fill: rgba(255, 255, 255, 0.70);
		
		
	
	
	
}

#stacks_in_8857-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_8857-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_8857-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_8857-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_8857-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8857-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8857-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_8857-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8857-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8857-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8857-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8857-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8857-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8860-svg svg {
	
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.33));
	
	display: inline-block;
	
	
	
		
		
		fill: rgba(255, 255, 255, 0.70);
		
		
	
	
	
}

#stacks_in_8860-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_8860-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_8860-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_8860-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_8860-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8860-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8860-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_8860-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8860-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8860-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8860-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8860-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8860-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8862-svg svg {
	
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.33));
	
	display: inline-block;
	
	
	
		
		
		fill: rgba(255, 255, 255, 0.70);
		
		
	
	
	
}

#stacks_in_8862-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_8862-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_8862-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_8862-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_8862-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8862-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8862-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_8862-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8862-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8862-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8862-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8862-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8862-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8864-svg svg {
	
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.33));
	
	display: inline-block;
	
	
	
		
		
		fill: rgba(255, 255, 255, 0.70);
		
		
	
	
	
}

#stacks_in_8864-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_8864-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_8864-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_8864-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_8864-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8864-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8864-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_8864-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8864-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8864-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8864-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8864-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8864-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8866-svg svg {
	
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.33));
	
	display: inline-block;
	
	
	
		
		
		fill: rgba(255, 255, 255, 0.70);
		
		
	
	
	
}

#stacks_in_8866-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_8866-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_8866-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_8866-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_8866-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8866-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8866-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_8866-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8866-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8866-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8866-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8866-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8866-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8868-svg svg {
	
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.33));
	
	display: inline-block;
	
	
	
		
		
		fill: rgba(255, 255, 255, 0.70);
		
		
	
	
	
}

#stacks_in_8868-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_8868-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_8868-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_8868-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_8868-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8868-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8868-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_8868-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8868-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8868-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8868-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8868-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8868-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8870-svg svg {
	
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.33));
	
	display: inline-block;
	
	
	
		
		
		fill: rgba(255, 255, 255, 0.70);
		
		
	
	
	
}

#stacks_in_8870-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_8870-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_8870-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_8870-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_8870-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8870-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8870-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_8870-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8870-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8870-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8870-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8870-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8870-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_8872-svg svg {
	
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.33));
	
	display: inline-block;
	
	
	
		
		
		fill: rgba(255, 255, 255, 0.70);
		
		
	
	
	
}

#stacks_in_8872-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_8872-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_8872-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_8872-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_8872-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_8872-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_8872-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_8872-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_8872-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_8872-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_8872-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_8872-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_8872-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




#stacks_in_8874-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8874-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8874-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8874-margins.padding-advanced {
	padding: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8875-wrapper {
	
	
	border-color: rgba(255, 255, 255, 0.25) !important;
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_8875-wrapper .border-badge {
	
	background-color: var(--bs-white) !important;
	
	
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_8875-wrapper .border-badge {
	
}

#stacks_in_8875-wrapper.custom-width {
	width: 80%;
}





@media (max-width: 575px) {
	
	#stacks_in_8877-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_8880-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_8880-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_8880-margins.margins-advanced {
	margin: 0.00px 0.00px 0.00px 0.00px;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}




#stacks_in_8880-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

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

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_8882-wrapper {
	
	
	
		
		color: rgba(255, 255, 255, 1.00);
		
		
	
}


#stacks_in_8882-wrapper {
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_8882-wrapper a,
#stacks_in_8882-wrapper a:visited {
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_8882-wrapper a:hover,
#stacks_in_8882-wrapper a:active {
	color: rgba(240, 233, 19, 1.00);
}








	#stacks_in_8882-wrapper p:last-of-type {
		margin-bottom: 0;
	}


