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


.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;
    }

  


 

html {
	-webkit-scroll-behavior: smooth;
	scroll-behavior: smooth;
}

#stacks_in_24_2-navbar {
	z-index: 1040 !important;
}

.stacks_in_24_2-navbar *:focus {
	outline: none !important;
}

#stacks_in_24_2-navbar .branding-link {
	text-decoration: none !important;
}

/* Animate Navigation Bar on Page Load */
/* #stacks_in_24_2-navbar {
	
	animation: fdy-fadeIn;
	animation-duration: 0.5s;
	
} */


.fdy-fixed-nav #stacks_in_24_2-navbar {
	position: fixed;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
}	


#stacks_in_24_2-navbar {
	
	
	
}

#stacks_in_24_2-navbar.fdy-unstuck {
	
	
	
}

#stacks_in_24_2-navbar.fdy-stuck {
	
	
	
}

@keyframes fdyNavHeight{
  from {
  	height: 120px;
  }
  to {
	height: 90px;
  }
}

@keyframes fdyNavHeightRv{
  from {
	height: 90px;
  }
  to {
	  height: 120px;
  }
}



#stacks_in_24_2-navbar {	
	
	background: var(--bs-primary);
	
	
	
	
}

#stacks_in_24_2-navbar.fdy-stuck {
	
	
	background: rgba(255, 255, 255, 1.00);
	

	
}

#stacks_in_24_2-navbar .fdy-sticky-logo {
	display: none;
}








#stacks_in_24_2-navbar .fdy-normal-logo {
	width: 48px;
	height: auto;
}

#stacks_in_24_2-navbar .fdy-sticky-logo {
	width: 48px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_24_2-navbar .fdy-normal-logo {
		width: 48px;
		height: auto;
	}
	
	#stacks_in_24_2-navbar .fdy-sticky-logo {
		width: 48px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_24_2-navbar .fdy-normal-logo {
		width: 48px;
		height: auto;
	}
	
	#stacks_in_24_2-navbar .fdy-sticky-logo {
		width: 48px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_24_2-navbar .fdy-normal-logo {
		width: 48px;
		height: auto;
	}
	
	#stacks_in_24_2-navbar .fdy-sticky-logo {
		width: 48px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_24_2-navbar .fdy-normal-logo {
		width: 48px;
		height: auto;
	}
	
	#stacks_in_24_2-navbar .fdy-sticky-logo {
		width: 48px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_24_2-navbar .fdy-normal-logo {
		width: 48px;
		height: auto;
	}
	
	#stacks_in_24_2-navbar .fdy-sticky-logo {
		width: 48px;
		height: auto;
	}
}






/* Navigation Bar Styling */
#stacks_in_24_2-navbar {
	
	
	border-color: var(--bs-gray-200) !important;
	
}

#stacks_in_24_2-navbar.fdy-stuck {
	
	
	border-color: var(--bs-gray-200) !important;
	
}

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

#stacks_in_24_2-navbar.custom-shadow-sticky {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

/* Branding */
#stacks_in_24_2-navbar .branding-site-title {
	font-weight: 700;
	
	color: var(--bs-success);
	
	
	letter-spacing: 0.00px;	
}

#stacks_in_24_2-navbar.fdy-stuck .branding-site-title {
	
	color: var(--bs-primary);
	
	
}

#stacks_in_24_2-navbar .branding-site-title {
	font-size: 1.25rem;
}

@media (min-width: 576px) {
	#stacks_in_24_2-navbar .branding-site-title {
		font-size: 1.25rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_24_2-navbar .branding-site-title {
		font-size: 1.25rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_24_2-navbar .branding-site-title {
		font-size: 1.25rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_24_2-navbar .branding-site-title {
		font-size: 1.25rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_24_2-navbar .branding-site-title {
		font-size: 1.25rem;
	}
}


/* Navigation Items */

#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link {
	
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	margin-left: 1px;
	margin-right: 1px;
}


#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link {
	font-size: 1.00rem;
}

@media (min-width: 576px) {
	#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link {
		font-size: 1.00rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link {
		font-size: 1.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link {
		font-size: 1.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link {
		font-size: 1.00rem;
	}
}


#stacks_in_24_2-navbar .navbar-nav .nav-item:first-child a.nav-link {
	margin-left: 0px;
}

#stacks_in_24_2-navbar .navbar-nav .nav-item:last-child a.nav-link {
	margin-right: 0px;
}

#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link,
#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link:visited {
	font-weight: 400;
	
	color: var(--bs-success);
	
	
	
}

#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link.active {
	font-weight: 400;
}

#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link.active,
#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link.show,
#stacks_in_24_2-navbar .navbar-nav .nav-item a.nav-link:hover {
	
	color: var(--bs-primary);
	
	
	
	
	
	background-color: rgba(255, 237, 71, 1.00);
	
}


#stacks_in_24_2-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link,
#stacks_in_24_2-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link:visited {
	font-weight: ;
	
	
	color: var(--bs-primary);
	
}

#stacks_in_24_2-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link.active,
#stacks_in_24_2-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link.show,
#stacks_in_24_2-navbar.fdy-stuck .navbar-nav .nav-item a.nav-link:hover {
	
	
	color: var(--bs-success);
	
	
	
	
	background-color: var(--bs-primary);
	
}


/* Drop Down */
#stacks_in_24_2-navbar .nav-item.dropdown .dropdown-menu {
	
	background-color: var(--bs-white);
	
	
}

#stacks_in_24_2-navbar .nav-item.dropdown .dropdown-menu {
	
		
	border-color: var(--bs-gray-200);
	
	
}

#stacks_in_24_2-navbar .nav-item.dropdown .dropdown-menu.no-drop-down-border {
	border: none !important;
}

#stacks_in_24_2-navbar .nav-item.dropdown a.dropdown-item,
#stacks_in_24_2-navbar .nav-item.dropdown a.dropdown-item:visited {
	
	
	color: var(--bs-gray-500);
	
}

#stacks_in_24_2-navbar .nav-item.dropdown a.dropdown-item.active,
#stacks_in_24_2-navbar .nav-item.dropdown a.dropdown-item:hover {
	
	
	color: var(--bs-white);
	

	
	
	background-color: var(--bs-gray-500);
	
}

#stacks_in_24_2-navbar .drop-down-indicator {
  line-height: 1.4rem;
}

#stacks_in_24_2-navbar.fdy-stuck .nav-item.dropdown .dropdown-menu {
	
	
	background-color: var(--bs-white);
	

}

#stacks_in_24_2-navbar.fdy-stuck .nav-item.dropdown .dropdown-menu {
	
	
	border-color: var(--bs-gray-200) !important;
	

	
}

#stacks_in_24_2-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item,
#stacks_in_24_2-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item:visited {
	
	
	color: var(--bs-gray-500);
	
}

#stacks_in_24_2-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item.active,
#stacks_in_24_2-navbar.fdy-stuck .nav-item.dropdown a.dropdown-item:hover {
	
	
	color: var(--bs-white);
	

	
	
	background-color: var(--bs-gray-500);
	
}

#stacks_in_24_2-navbar hr.dropdown-divider {
	opacity: 1 !important;
	
	
	color: var(--bs-gray-200);
	border-color: var(--bs-gray-200);
		
}

#stacks_in_24_2-navbar.fdy-stuck hr.dropdown-divider {
	opacity: 1 !important;
	
	
	color: var(--bs-gray-200);
	border-color: var(--bs-gray-200);
		
}

#stacks_in_24_2-navbar .small-header h6 {
	opacity: 1 !important;
	
	
	color: var(--bs-gray-400);
	
}

#stacks_in_24_2-navbar.fdy-stuck .small-header h6 {
	opacity: 1 !important;
	
	
	color: var(--bs-gray-400);
	
}


/* Inner Max-Width - Similar to Max-Width stack */


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


	/* Advanced Mode */
	#stacks_in_24_2-navbar .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_24_2-navbar .fdy-container {
		max-width: 540px;
	  }
	}
	
	
	
	@media (min-width: 768px) {
	  #stacks_in_24_2-navbar .fdy-container {
		max-width: 720px;
	  }
	}
	
	
	
	@media (min-width: 992px) {
	  #stacks_in_24_2-navbar .fdy-container {
		max-width: 960px;
	  }
	}
	
	
	
	@media (min-width: 1200px) {
	  #stacks_in_24_2-navbar .fdy-container {
		max-width: 1140px;
	  }
	}
	
	
	
	@media (min-width: 1400px) {
	  #stacks_in_24_2-navbar .fdy-container {
		max-width: 1320px;
	  }
	}
	


#stacks_in_24_2-navbar.navbar-light .navbar-toggler {
	
	
		border-color: var(--bs-success);
		color: var(--bs-success);
	
}

#stacks_in_24_2-navbar.navbar-light .navbar-toggler.collapsed {
	
	
		border-color: var(--bs-success);
		color: var(--bs-success);
	
}

#stacks_in_24_2-navbar.fdy-stuck.navbar-light .navbar-toggler {
	
	
		border-color: var(--bs-primary);
		color: var(--bs-primary);
	
}

#stacks_in_24_2-navbar.fdy-stuck.navbar-light .navbar-toggler.collapsed {
	
	
		border-color: var(--bs-primary) !important;
		color: var(--bs-primary) !important;
	
}	

#stacks_in_24_2-navbar.navbar-light .navbar-toggler-icon {
  background-image: none;
}


	
		

		

		
		@media (min-width: 992px) {
		

		

		


			#stacks_in_24_2-navbar .fdy-normal-logo,
			#stacks_in_24_2-navbar .branding-site-title,
			#stacks_in_24_2-navbar .navbar-nav
			 {
				padding-top: 0 !important;
				padding-bottom: 0 !important;
			}
			
			#stacks_in_24_2-navbar {
				padding-top: 0px !important;
				padding-bottom: 0px !important;
			}
			
			#stacks_in_24_2-navbar ul.navbar-nav > li > .nav-link {
				padding-top: 20px !important;
				padding-bottom: 20px !important;
				padding-left: 7px !important;
				padding-right: 7px !important;
			}
			
			#stacks_in_24_2-navbar ul.navbar-nav > .vert-divider {
				padding-top: 8px !important;
				padding-bottom: 8px !important;
			}
			
		}
	

	
	
	
	
	
	
	@media (min-width: 992px) {
	
	
	
	
	
		
		#stacks_in_24_2-navbar.fdy-stuck .fdy-normal-logo,
		#stacks_in_24_2-navbar.fdy-stuck .branding-site-title,
		#stacks_in_24_2-navbar.fdy-stuck .navbar-nav {
			padding-top: 0 !important;
			padding-bottom: 0 !important;
		}
		
		#stacks_in_24_2-navbar.fdy-stuck {
			padding-top: 0px !important;
			padding-bottom: 0px !important;
		}
		
		#stacks_in_24_2-navbar.fdy-stuck ul.navbar-nav > li > .nav-link {
			padding-top: 20px !important;
			padding-bottom: 20px !important;
			padding-left: 7px !important;
			padding-right: 7px !important;
		}
		
		#stacks_in_24_2-navbar.fdy-stuck ul.navbar-nav > .vert-divider {
			padding-top: 8px !important;
			padding-bottom: 8px !important;
		}
		
	}
	

	
 

#stacks_in_24_2-navbar .dropdown-menu {
	
}








@media (max-width: 991px) {





	#stacks_in_24_2-navbar,
	#stacks_in_24_2-navbar.fdy-stuck {
		height: initial !important;
	}

	#stacks_in_24_2-navbar .dropdown-menu {
		display: none !important;
		
	}

	#stacks_in_24_2-navbar .show {
		animation: none !important;
		animation-duration: 0s !important;
		display: block !important;
		opacity: 1 !important;
	}
	
}




#stacks_in_24_2-navbar .navbar-nav .dropdown a.dropdown-item {
	
}







.stacks_in_24_3-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_24_3-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_3-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_24_3-item > ul.dropdown-menu.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


.stacks_in_24_3-item.nav-item a.nav-link,
.stacks_in_24_3-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_24_3-item.nav-item a.nav-link.active,
.stacks_in_24_3-item.nav-item a.nav-link.show,
.stacks_in_24_3-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_24_3-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_24_3-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_3-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_24_3-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_24_3-item.nav-item a.nav-link:hover {
	
		
	
}


.stacks_in_24_3-item > ul.dropdown-menu {
	
		
	
	
}

.stacks_in_24_3-item > ul.dropdown-menu.show {
	pointer-events: initial;
	opacity: 1;
	
	
		
	
}


.stacks_in_24_5-small-header h6 {
		
}

.fdy-stuck .stacks_in_24_5-small-header h6 {
	
}



.stacks_in_24_7-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_7-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_7-item a.dropdown-item,
.stacks_in_24_7-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_7-item a.dropdown-item.active,
.stacks_in_24_7-item a.dropdown-item.show,
.stacks_in_24_7-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_7-item a.dropdown-item,
.fdy-stuck .stacks_in_24_7-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_7-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_7-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_7-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_24_8-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_8-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_8-item a.dropdown-item,
.stacks_in_24_8-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_8-item a.dropdown-item.active,
.stacks_in_24_8-item a.dropdown-item.show,
.stacks_in_24_8-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_8-item a.dropdown-item,
.fdy-stuck .stacks_in_24_8-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_8-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_8-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_8-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_24_9-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_9-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_9-item a.dropdown-item,
.stacks_in_24_9-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_9-item a.dropdown-item.active,
.stacks_in_24_9-item a.dropdown-item.show,
.stacks_in_24_9-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_9-item a.dropdown-item,
.fdy-stuck .stacks_in_24_9-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_9-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_9-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_9-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_24_10-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_10-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_10-item a.dropdown-item,
.stacks_in_24_10-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_10-item a.dropdown-item.active,
.stacks_in_24_10-item a.dropdown-item.show,
.stacks_in_24_10-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_10-item a.dropdown-item,
.fdy-stuck .stacks_in_24_10-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_10-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_10-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_10-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_24_11-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_11-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_11-item a.dropdown-item,
.stacks_in_24_11-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_11-item a.dropdown-item.active,
.stacks_in_24_11-item a.dropdown-item.show,
.stacks_in_24_11-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_11-item a.dropdown-item,
.fdy-stuck .stacks_in_24_11-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_11-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_11-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_11-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_24_12-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_12-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_12-item a.dropdown-item,
.stacks_in_24_12-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_12-item a.dropdown-item.active,
.stacks_in_24_12-item a.dropdown-item.show,
.stacks_in_24_12-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_12-item a.dropdown-item,
.fdy-stuck .stacks_in_24_12-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_12-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_12-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_12-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_24_13-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_13-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_13-item a.dropdown-item,
.stacks_in_24_13-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_13-item a.dropdown-item.active,
.stacks_in_24_13-item a.dropdown-item.show,
.stacks_in_24_13-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_13-item a.dropdown-item,
.fdy-stuck .stacks_in_24_13-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_13-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_13-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_13-item a.dropdown-item:hover {
	
		
	
}


.stacks_in_24_14-divider hr.dropdown-divider {
	opacity: 1 !important;
	
}

.fdy-stuck .stacks_in_24_14-divider hr.dropdown-divider {
	
}


.hide-shadow {
	box-shadow: none !important;
}

.stacks_in_24_15-small-header h6 {
		
}

.fdy-stuck .stacks_in_24_15-small-header h6 {
	
}


.stacks_in_24_16-small-header h6 {
		
}

.fdy-stuck .stacks_in_24_16-small-header h6 {
	
}



.stacks_in_24_17-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_17-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_17-item a.dropdown-item,
.stacks_in_24_17-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_17-item a.dropdown-item.active,
.stacks_in_24_17-item a.dropdown-item.show,
.stacks_in_24_17-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_17-item a.dropdown-item,
.fdy-stuck .stacks_in_24_17-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_17-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_17-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_17-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_24_18-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_18-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_18-item a.dropdown-item,
.stacks_in_24_18-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_18-item a.dropdown-item.active,
.stacks_in_24_18-item a.dropdown-item.show,
.stacks_in_24_18-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_18-item a.dropdown-item,
.fdy-stuck .stacks_in_24_18-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_18-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_18-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_18-item a.dropdown-item:hover {
	
		
	
}


.stacks_in_24_19-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_24_19-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_19-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_24_19-item > ul.dropdown-menu.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}


.stacks_in_24_19-item.nav-item a.nav-link,
.stacks_in_24_19-item.nav-item a.nav-link:visited {
		
	
	
}

.stacks_in_24_19-item.nav-item a.nav-link.active,
.stacks_in_24_19-item.nav-item a.nav-link.show,
.stacks_in_24_19-item.nav-item a.nav-link:hover {
	
		
	
}


.fdy-stuck .stacks_in_24_19-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_24_19-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_19-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_24_19-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_24_19-item.nav-item a.nav-link:hover {
	
		
	
}


.stacks_in_24_19-item > ul.dropdown-menu {
	
		
	
	
}

.stacks_in_24_19-item > ul.dropdown-menu.show {
	pointer-events: initial;
	opacity: 1;
	
	
		
	
}


.stacks_in_24_21-small-header h6 {
		
}

.fdy-stuck .stacks_in_24_21-small-header h6 {
	
}



.stacks_in_24_22-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_22-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_22-item a.dropdown-item,
.stacks_in_24_22-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_22-item a.dropdown-item.active,
.stacks_in_24_22-item a.dropdown-item.show,
.stacks_in_24_22-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_22-item a.dropdown-item,
.fdy-stuck .stacks_in_24_22-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_22-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_22-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_22-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_24_29-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_29-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_29-item a.dropdown-item,
.stacks_in_24_29-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_29-item a.dropdown-item.active,
.stacks_in_24_29-item a.dropdown-item.show,
.stacks_in_24_29-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_29-item a.dropdown-item,
.fdy-stuck .stacks_in_24_29-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_29-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_29-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_29-item a.dropdown-item:hover {
	
		
	
}



.stacks_in_24_24-item .badge {
	position: relative;
	top: -2px;
}

.stacks_in_24_24-item .badge {
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_24-item a.dropdown-item,
.stacks_in_24_24-item a.dropdown-item:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
}

.stacks_in_24_24-item a.dropdown-item.active,
.stacks_in_24_24-item a.dropdown-item.show,
.stacks_in_24_24-item a.dropdown-item:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	
}

.fdy-stuck .stacks_in_24_24-item a.dropdown-item,
.fdy-stuck .stacks_in_24_24-item a.dropdown-item:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_24-item a.dropdown-item.active,
.fdy-stuck .stacks_in_24_24-item a.dropdown-item.show,
.fdy-stuck .stacks_in_24_24-item a.dropdown-item:hover {
	
		
	
}


.stacks_in_24_58-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_24_58-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_58-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_24_58-item.nav-item a.nav-link,
.stacks_in_24_58-item.nav-item a.nav-link:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
	
	
}

.stacks_in_24_58-item.nav-item a.nav-link.active,
.stacks_in_24_58-item.nav-item a.nav-link.show,
.stacks_in_24_58-item.nav-item a.nav-link:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	

	
}


.fdy-stuck .stacks_in_24_58-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_24_58-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_58-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_24_58-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_24_58-item.nav-item a.nav-link:hover {
	
		
	
}



.stacks_in_24_25-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_24_25-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_25-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_24_25-item.nav-item a.nav-link,
.stacks_in_24_25-item.nav-item a.nav-link:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
	
	
}

.stacks_in_24_25-item.nav-item a.nav-link.active,
.stacks_in_24_25-item.nav-item a.nav-link.show,
.stacks_in_24_25-item.nav-item a.nav-link:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	

	
}


.fdy-stuck .stacks_in_24_25-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_24_25-item.nav-item a.nav-link:visited {
		
	
	
}

.fdy-stuck .stacks_in_24_25-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_24_25-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_24_25-item.nav-item a.nav-link:hover {
	
		
	
}



.stacks_in_24_26-nav-vertical-divider.divider-bg-custom {
	background-color: rgba(205, 209, 212, 1.00);
}

.stacks_in_24_26-nav-vertical-divider {
	
	
	background-color: var(--bs-success);
	
}

.fdy-stuck .stacks_in_24_26-nav-vertical-divider {
	
	
	background-color: var(--bs-primary);
	
}


.stacks_in_24_26-nav-vertical-divider {
	width: 2px;
}



.stacks_in_24_27-item .badge-nav-inline {
	position: relative;
	top: -2px;
}

.stacks_in_24_27-item .badge {
	color: rgba(255, 255, 255, 1.00);
	
	background: var(--bs-danger);
	
	
	

	

	color: rgba(255, 255, 255, 1.00);
}


.stacks_in_24_27-item > a.nav-link.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

.stacks_in_24_27-item.nav-item a.nav-link,
.stacks_in_24_27-item.nav-item a.nav-link:visited {
	transition-duration: 0.15s;
	transition-property: none;
		
	
	
		
		
		background-color: var(--bs-info) !important;
		
	
	
	
}

.stacks_in_24_27-item.nav-item a.nav-link.active,
.stacks_in_24_27-item.nav-item a.nav-link.show,
.stacks_in_24_27-item.nav-item a.nav-link:hover {
	transition-duration: 0.15s;
	transition-property: none;
	
		
	

	
}


.fdy-stuck .stacks_in_24_27-item.nav-item a.nav-link,
.fdy-stuck .stacks_in_24_27-item.nav-item a.nav-link:visited {
		
	
	
		
		
		background-color: var(--bs-success) !important;
		
	
}

.fdy-stuck .stacks_in_24_27-item.nav-item a.nav-link.active,
.fdy-stuck .stacks_in_24_27-item.nav-item a.nav-link.show,
.fdy-stuck .stacks_in_24_27-item.nav-item a.nav-link:hover {
	
		
	
}

/* 1.0.1
 - removed a bunch of API calls to try and help with load time in edit and preview modes
 - Added svg refresh to resolve display issues in safari and RW preview
 - added hardware acceleration to svg graphics to increase performance
 - fixed a bug that could cause the stack to load into the editor slowly
 1.0.2
 - hotfix, editmode display bug
 1.0.5
 - Added Experimental responsive defintion feature
*/

.svg-metamorph.svgm_stacks_in_2036 .svgm-group {
    display: none;
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-group.svgm-wide-20,
.svg-metamorph.svgm_stacks_in_2036 .svgm-group.svgm-pattern-1,
.svg-metamorph.svgm_stacks_in_2036 .svgm-group.svgm-special-12 {
    display: block;
}
.svg-metamorph.svgm_stacks_in_2036,
.svg-metamorph.svgm_stacks_in_2036 .svgm-content {
  position: relative;
  z-index: 1;
}
#stacks_in_2036, #stacks_out_2036 {
  overflow: visible;
}
.svg-metamorph.svgm_stacks_in_2036 {
  display: inline-block;
  width: calc(100% - 1px);
  position: relative;
  margin-top: -0px;
  margin-bottom: -0px;
  
  margin-top: calc(120px - 0px);
  
  
  margin-bottom: calc(120px - 0px);
  
  
  
}

.svg-metamorph.svgm_stacks_in_2036 > .svgm-wrap-outer > .svgm-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.svg-metamorph.svgm_stacks_in_2036 > .svgm-wrap-outer > .svgm-wrap svg {
  width: 100%;
  height: calc(100% + 120px + 120px);
  stroke: none;
  fill: white;
}
.svg-metamorph.svgm_stacks_in_2036 > .svgm-wrap-outer > .svgm-wrap svg path.svgm-opacity {
  stroke: none;
  stroke-width: 0;
}
.svg-metamorph.svgm_stacks_in_2036 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-top {
  top: 0;
  z-index: 1;
  transform: translateY(-120px);
}
.svg-metamorph.svgm_stacks_in_2036 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-center {
  z-index: 2;
  height: calc(100% + 3px);
  /* top: -1.5px; */
}
.svg-metamorph.svgm_stacks_in_2036 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-bottom {
  bottom: 0;
  z-index: 0;
  transform: translateY(120px) rotateZ(180deg);
}
.svg-metamorph.svgm_stacks_in_2036 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-center svg {
  transform: translateY(-120px);
  /* margin-top: 1px; */
}
.svg-metamorph.svgm_stacks_in_2036 > .svgm-wrap-outer > .svgm-wrap > svg {
  width: 100%;
  overflow: visible;
}
.svg-metamorph.svgm_stacks_in_2036 > .svgm-wrap-outer > .svgm-wrap:after {
  background: #6CD7CB;
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-content {
  position: relative;
  z-index: 3;
  min-height: 120px;
  display: grid;
  align-items: center;
  
}


.svg-metamorph.svgm_stacks_in_2036 .svgm-content > div {
  
  
  
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-mask {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_2036 > .svgm-wrap-outer {
  height: calc(100% - 0px - 0px );
  min-height: 120px;
  position: absolute;
  width: 100%;
  top: 0px;
  
  top: auto;
  bottom: 0px;
  
  transform: translateZ(0);
}


.svg-metamorph.svgm_stacks_in_2036 image:not(.svgm-pattern):not(.svgm-off) {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_2036 image.svgm-off {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-pattern {
  width: 100px;
  height: 100px;
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-custom-pattern-1a {
  transform-origin: center;
  transform: translate(-358.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-custom-pattern-1b {
  transform-origin: center;
  transform: translate(-362.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-custom-pattern-2a {
  transform-origin: center;
  transform: translate(-358.000000px, 0) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-custom-pattern-2b {
  transform-origin: center;
  transform: translate(-362.000000px, 0) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-custom-pattern-3a {
  transform-origin: center;
  transform: translate(2518.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-custom-pattern-3b {
  transform-origin: center;
  transform: translate(2522.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-custom-pattern-opacity-1 {
  transform-origin: center;
  transform: translate(0, 38.000000px);
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-custom-pattern-opacity-2 {
  transform-origin: center;
  transform: translate(0, 38.000000px) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-use-r {
  transform: scale(-1,1);
  transform-origin: 960px 0;
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-mask-top {
  transform: translate(0,4px) scaleX(1);
}
.svg-metamorph.svgm_stacks_in_2036 .svgm-mask-bottom {
  transform: translate(0,-1px) scaleX(1);
}




@media all and (min-width: 1921px) {
  .svg-metamorph.svgm_stacks_in_2036 .svgm-mask {
    transform: scaleX(1.34);
  }
  .svg-metamorph.svgm_stacks_in_2036 .svgm-mask-top {
    transform: translate(0,4px) scaleX(1.34);
  }
  .svg-metamorph.svgm_stacks_in_2036 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(1.34);
  }
}
@media all and (min-width: 2561px) {
  .svg-metamorph.svgm_stacks_in_2036 .svgm-mask {
    transform: scaleX(1.67);
  }
  .svg-metamorph.svgm_stacks_in_2036 .svgm-mask-top {
    transform: translate(0,4px) scaleX(1.67);
  }
  .svg-metamorph.svgm_stacks_in_2036 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(1.67);
  }
}
@media all and (min-width: 3201px) {
  .svg-metamorph.svgm_stacks_in_2036 .svgm-mask {
    transform: scaleX(2);
  }
  .svg-metamorph.svgm_stacks_in_2036 .svgm-mask-top {
    transform: translate(0,-1px) translate(0,4px) scaleX(2);
  }
  .svg-metamorph.svgm_stacks_in_2036 .svgm-mask-bottom {
    transform: scaleX(2);
  }
}



/**/



#stacks_in_2038-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_2038-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_2038-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_2039-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_2039-margins.padding-advanced {
	padding: 5.00rem 0.00rem 5.00rem 0.00rem;
}

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

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

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

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

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






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





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

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


#stacks_in_2045-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_2045-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

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

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

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

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

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



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

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

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

}



/* Base Margins */
h1.stacks_in_2047-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h1.stacks_in_2047-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h1.stacks_in_2047-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h1.stacks_in_2047-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h1.stacks_in_2047-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h1.stacks_in_2047-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_2047-header {
	font-size: 1.50rem;
}

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

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

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

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

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




#stacks_in_2051-svg svg {
	
	display: inline-block;
	
	
	
	
	
}

#stacks_in_2051-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_2051-svg svg {
	width: 100%;	
	max-width: 80px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_2051-svg svg {
		width: 100%;	
		max-width: 80px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_2051-svg svg {
		width: 100%;	
		max-width: 80px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_2051-svg svg {
		width: 100%;	
		max-width: 120px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_2051-svg svg {
		width: 100%;	
		max-width: 120px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_2051-svg svg {
		width: 100%;	
		max-width: 120px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_2051-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_2051-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_2051-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_2051-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_2051-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_2051-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}








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

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


#stacks_in_2057-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_2057-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

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

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

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

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

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



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









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









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







#stacks_in_2065-wrapper {
	font-size: 3.20rem;
}

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

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

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

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

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



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





h2.stacks_in_2068-header {
	
	font-weight: 900;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_2068-header {
	font-size: 3.00rem;
}

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

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

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

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

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



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







#stacks_in_2070-wrapper {
	font-size: 2.00rem;
}

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

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

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

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

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



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





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

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


#stacks_in_2072-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_2072-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

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

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

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

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

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



h2.stacks_in_2073-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_2073-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

}



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



a.hdr-link-stacks_in_2073,
a.hdr-link-stacks_in_2073:visited,
a.hdr-link-stacks_in_2073:active,
a.hdr-link-stacks_in_2073:hover {
	
	text-decoration: none !important;
	
	outline: none;
}




.stacks_in_2073-header {
	font-size: 2.30rem;
}

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

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

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

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

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



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

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


#stacks_in_2076-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_2076-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

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

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

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

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

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


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


.stacks_in_2077-button,
.stacks_in_2077-button:focus,
.stacks_in_2077-button:active {
	
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
	color: rgba(255, 237, 71, 1.00);
	
	
	
	
	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, opacity 0.15s ease-in-out;
	
	outline: none;
}

.stacks_in_2077-button:hover,
.stacks_in_2077-button:hover:active {
	
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary);
	color: rgba(255, 237, 71, 1.00) !important;
	
	
	

	opacity: 0.850000;	
}











#stacks_in_2077-wrapper a {
	outline: none;
}

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



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


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


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















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

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

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

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


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

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

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

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



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

#stacks_in_26-wrapper.bkg-image {
	background-image: url(../files/drag-and-drop-img-26.png);
}






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



	

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



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



	
	

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

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

#stacks_in_26-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_26-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_26-wrapper.custom-corners,
#stacks_in_26-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_26-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



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


#stacks_in_26-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_26-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_26-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_27-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_27-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_27-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_763-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_763-margins.padding-advanced {
	padding: 5.00rem 0.00rem 5.00rem 0.00rem;
}

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

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

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

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

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






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





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

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


#stacks_in_768-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_768-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

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

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

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

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

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



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

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

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

}



/* Base Margins */
h1.stacks_in_39-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h1.stacks_in_39-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h1.stacks_in_39-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h1.stacks_in_39-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h1.stacks_in_39-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h1.stacks_in_39-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_39-header {
	font-size: 1.50rem;
}

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

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

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

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

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




#stacks_in_774-svg svg {
	
	display: inline-block;
	
	
	
	
	
}

#stacks_in_774-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_774-svg svg {
	width: 100%;	
	max-width: 80px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_774-svg svg {
		width: 100%;	
		max-width: 80px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_774-svg svg {
		width: 100%;	
		max-width: 80px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_774-svg svg {
		width: 100%;	
		max-width: 120px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_774-svg svg {
		width: 100%;	
		max-width: 120px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_774-svg svg {
		width: 100%;	
		max-width: 120px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_774-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_774-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_774-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_774-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_774-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_774-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}








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

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


#stacks_in_780-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_780-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

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

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

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

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

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



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









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









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







#stacks_in_788-wrapper {
	font-size: 3.20rem;
}

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

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

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

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

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



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





h2.stacks_in_791-header {
	
	font-weight: 900;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_791-header {
	font-size: 3.00rem;
}

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

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

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

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

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



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







#stacks_in_793-wrapper {
	font-size: 2.00rem;
}

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

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

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

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

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



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





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

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


#stacks_in_797-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_797-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

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

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

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

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

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



h2.stacks_in_799-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_799-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

}



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



a.hdr-link-stacks_in_799,
a.hdr-link-stacks_in_799:visited,
a.hdr-link-stacks_in_799:active,
a.hdr-link-stacks_in_799:hover {
	
	text-decoration: none !important;
	
	outline: none;
}




.stacks_in_799-header {
	font-size: 2.30rem;
}

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

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

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

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

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



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

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


#stacks_in_1553-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_1553-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

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

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

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

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

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


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


.stacks_in_1554-button,
.stacks_in_1554-button:focus,
.stacks_in_1554-button:active {
	
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
	color: rgba(255, 237, 71, 1.00);
	
	
	
	
	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, opacity 0.15s ease-in-out;
	
	outline: none;
}

.stacks_in_1554-button:hover,
.stacks_in_1554-button:hover:active {
	
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary);
	color: rgba(255, 237, 71, 1.00) !important;
	
	
	

	opacity: 0.850000;	
}











#stacks_in_1554-wrapper a {
	outline: none;
}

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



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


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


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














#stacks_in_813-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_813-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_813-wrapper.fdy-container {
	max-width: 500px;
  }
}



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



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








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

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


#stacks_in_814-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_814-margins.padding-advanced {
	padding: 5.00rem 0.00rem 5.00rem 0.00rem;
}

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

@media (min-width: 768px) {
	
	#stacks_in_814-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_816-border {
			
		
			
			
			/* Border Style */
			 
			border-style: solid;
			
			
			
			
			/* Border Color */
			
		
			
		
			 
			border-color: var(--bs-info) !important;
			

			/* Rounded Corners */
			

}











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





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

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


#stacks_in_822-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_822-margins.padding-advanced {
	padding: 3.00rem 0.00rem 1.00rem 0.00rem;
}

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

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

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

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

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



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

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_1083-header {
	font-size: 1.50rem;
}

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

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

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

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

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



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

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


#stacks_in_827-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_827-margins.padding-advanced {
	padding: 0.50rem 0.00rem 0.00rem 0.00rem;
}

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

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

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

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

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



h3.stacks_in_828-header {
	
	font-weight: 900;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 2px rgba(12, 97, 176, 1.00);
	
	
	
}

h3.stacks_in_828-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_828-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_828-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_828-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_828-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_828-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_828-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






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

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

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

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

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

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



#stacks_in_832-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_832-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_832-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_833-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_833-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

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

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

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

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

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



#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.00rem 0.00rem 1.00rem 0.00rem;
}

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

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

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

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

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






.stacks_in_811.fdy-img {
	
	
		border-radius: 7px 7px 7px 7px;
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_811.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_811.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_811.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}






#stacks_in_1112-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_1112-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_1112-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_1114-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_1114-margins.padding-advanced {
	padding: 0.00rem 0.00rem 3.00rem 0.00rem;
}

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

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

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

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

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






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

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


#stacks_in_1125-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_1125-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_824-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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








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

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


#stacks_in_1118-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_1118-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_1120-wrapper {
	
	
	
}









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







#stacks_in_840-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_840-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_840-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_842-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_842-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

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

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

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

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

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






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

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


#stacks_in_846-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_846-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_848-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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







.stacks_in_851-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_851-list {
	
	
	
}

.stacks_in_851-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_851-list a,
.stacks_in_851-list a:visited,
.stacks_in_851-list a:hover,
.stacks_in_851-list a:active {
	text-decoration: none;
}

.stacks_in_851-list a,
.stacks_in_851-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_851-list a:hover,
.stacks_in_851-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_851-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_851-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_851-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_851-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_851-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_851-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_851-list .list-inline-item:not(:last-child) {

}

.stacks_in_851-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_851-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_975-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_975-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_974-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_974-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_852-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_852-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




#stacks_in_1160-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_1160-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_1160-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








#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 3.00rem 0.00rem;
}

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

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

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

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

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






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

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


#stacks_in_1166-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_1166-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_1168-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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








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

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


#stacks_in_1171-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_1171-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_1172-list {
	list-style: decimal;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1172-list {
	
	
	
}

.stacks_in_1172-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1172-list a,
.stacks_in_1172-list a:visited,
.stacks_in_1172-list a:hover,
.stacks_in_1172-list a:active {
	text-decoration: none;
}

.stacks_in_1172-list a,
.stacks_in_1172-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1172-list a:hover,
.stacks_in_1172-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1172-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1172-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1172-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1172-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1172-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1172-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1172-list .list-inline-item:not(:last-child) {

}

.stacks_in_1172-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1172-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1174-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1174-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1176-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1176-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1177-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1177-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




#stacks_in_1100-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_1100-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_1100-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_1102-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_1102-margins.padding-advanced {
	padding: 0.00rem 0.00rem 5.00rem 0.00rem;
}

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

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

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

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

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






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

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


#stacks_in_1106-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_1106-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_1108-wrapper {
	
	
	
		
		
		color: var(--bs-secondary);
		
	
}









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







#stacks_in_1133-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_1133-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_1133-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_1135-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_1135-margins.padding-advanced {
	padding: 0.00rem 0.00rem 3.00rem 0.00rem;
}

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

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

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

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

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






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

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


#stacks_in_1139-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_1139-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_1141-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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








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

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


#stacks_in_1144-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_1144-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_1145-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1145-list {
	
	
	
}

.stacks_in_1145-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1145-list a,
.stacks_in_1145-list a:visited,
.stacks_in_1145-list a:hover,
.stacks_in_1145-list a:active {
	text-decoration: none;
}

.stacks_in_1145-list a,
.stacks_in_1145-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1145-list a:hover,
.stacks_in_1145-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1145-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1145-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1145-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1145-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1145-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1145-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1145-list .list-inline-item:not(:last-child) {

}

.stacks_in_1145-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1145-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1181-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1181-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1180-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1180-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1156-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1156-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




#stacks_in_943-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_943-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_943-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_945-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_945-margins.padding-advanced {
	padding: 0.00rem 0.00rem 3.00rem 0.00rem;
}

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

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

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

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

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






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

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


#stacks_in_1074-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_1074-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_1075-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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








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

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


#stacks_in_949-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_949-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_1069-list {
	list-style: decimal;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1069-list {
	
	
	
}

.stacks_in_1069-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1069-list a,
.stacks_in_1069-list a:visited,
.stacks_in_1069-list a:hover,
.stacks_in_1069-list a:active {
	text-decoration: none;
}

.stacks_in_1069-list a,
.stacks_in_1069-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1069-list a:hover,
.stacks_in_1069-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1069-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1069-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1069-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1069-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1069-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1069-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1069-list .list-inline-item:not(:last-child) {

}

.stacks_in_1069-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1069-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1080-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1080-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1079-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1079-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1078-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1078-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1081-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1081-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1070-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1070-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




#stacks_in_1185-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_1185-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_1185-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_1187-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_1187-margins.padding-advanced {
	padding: 0.00rem 0.00rem 3.00rem 0.00rem;
}

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

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

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

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

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






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

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


#stacks_in_1191-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_1191-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_1193-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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








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

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


#stacks_in_1196-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_1196-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_1197-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1197-list {
	
	
	
}

.stacks_in_1197-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1197-list a,
.stacks_in_1197-list a:visited,
.stacks_in_1197-list a:hover,
.stacks_in_1197-list a:active {
	text-decoration: none;
}

.stacks_in_1197-list a,
.stacks_in_1197-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1197-list a:hover,
.stacks_in_1197-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1197-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1197-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1197-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1197-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1197-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1197-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1197-list .list-inline-item:not(:last-child) {

}

.stacks_in_1197-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1197-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1205-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1205-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1206-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1206-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1199-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1199-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




#stacks_in_891-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_891-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_891-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_893-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_893-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

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

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

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

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

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






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

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


#stacks_in_897-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_897-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_882-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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










.stacks_in_1002-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1002-list {
	
	
	
}

.stacks_in_1002-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1002-list a,
.stacks_in_1002-list a:visited,
.stacks_in_1002-list a:hover,
.stacks_in_1002-list a:active {
	text-decoration: none;
}

.stacks_in_1002-list a,
.stacks_in_1002-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1002-list a:hover,
.stacks_in_1002-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












.stacks_in_1002-list .list-inline-item:not(:last-child) {

}

.stacks_in_1002-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1002-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1004-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1004-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1003-list {
	list-style: circle;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1003-list {
	
	
	
}

.stacks_in_1003-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1003-list a,
.stacks_in_1003-list a:visited,
.stacks_in_1003-list a:hover,
.stacks_in_1003-list a:active {
	text-decoration: none;
}

.stacks_in_1003-list a,
.stacks_in_1003-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1003-list a:hover,
.stacks_in_1003-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1003-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1003-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1003-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1003-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1003-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1003-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1003-list .list-inline-item:not(:last-child) {

}

.stacks_in_1003-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1003-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1006-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1006-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1008-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1008-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1009-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1009-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




.stacks_in_1026-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1026-list {
	
	
	
}

.stacks_in_1026-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1026-list a,
.stacks_in_1026-list a:visited,
.stacks_in_1026-list a:hover,
.stacks_in_1026-list a:active {
	text-decoration: none;
}

.stacks_in_1026-list a,
.stacks_in_1026-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1026-list a:hover,
.stacks_in_1026-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












.stacks_in_1026-list .list-inline-item:not(:last-child) {

}

.stacks_in_1026-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1026-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1028-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1028-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1027-list {
	list-style: circle;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1027-list {
	
	
	
}

.stacks_in_1027-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1027-list a,
.stacks_in_1027-list a:visited,
.stacks_in_1027-list a:hover,
.stacks_in_1027-list a:active {
	text-decoration: none;
}

.stacks_in_1027-list a,
.stacks_in_1027-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1027-list a:hover,
.stacks_in_1027-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1027-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1027-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1027-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1027-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1027-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1027-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1027-list .list-inline-item:not(:last-child) {

}

.stacks_in_1027-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1027-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1038-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1038-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1037-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1037-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1034-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1034-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




.stacks_in_1018-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1018-list {
	
	
	
}

.stacks_in_1018-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1018-list a,
.stacks_in_1018-list a:visited,
.stacks_in_1018-list a:hover,
.stacks_in_1018-list a:active {
	text-decoration: none;
}

.stacks_in_1018-list a,
.stacks_in_1018-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1018-list a:hover,
.stacks_in_1018-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












.stacks_in_1018-list .list-inline-item:not(:last-child) {

}

.stacks_in_1018-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1018-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1020-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1020-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1019-list {
	list-style: circle;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1019-list {
	
	
	
}

.stacks_in_1019-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1019-list a,
.stacks_in_1019-list a:visited,
.stacks_in_1019-list a:hover,
.stacks_in_1019-list a:active {
	text-decoration: none;
}

.stacks_in_1019-list a,
.stacks_in_1019-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1019-list a:hover,
.stacks_in_1019-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1019-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1019-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1019-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1019-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1019-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1019-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1019-list .list-inline-item:not(:last-child) {

}

.stacks_in_1019-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1019-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1030-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1030-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1039-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1039-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1022-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1022-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




.stacks_in_1010-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1010-list {
	
	
	
}

.stacks_in_1010-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1010-list a,
.stacks_in_1010-list a:visited,
.stacks_in_1010-list a:hover,
.stacks_in_1010-list a:active {
	text-decoration: none;
}

.stacks_in_1010-list a,
.stacks_in_1010-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1010-list a:hover,
.stacks_in_1010-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












.stacks_in_1010-list .list-inline-item:not(:last-child) {

}

.stacks_in_1010-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1010-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1012-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1012-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1011-list {
	list-style: circle;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1011-list {
	
	
	
}

.stacks_in_1011-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1011-list a,
.stacks_in_1011-list a:visited,
.stacks_in_1011-list a:hover,
.stacks_in_1011-list a:active {
	text-decoration: none;
}

.stacks_in_1011-list a,
.stacks_in_1011-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1011-list a:hover,
.stacks_in_1011-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1011-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1011-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1011-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1011-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1011-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1011-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1011-list .list-inline-item:not(:last-child) {

}

.stacks_in_1011-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1011-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1042-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1042-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1041-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1041-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1040-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1040-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




.stacks_in_902-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_902-list {
	
	
	
}

.stacks_in_902-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_902-list a,
.stacks_in_902-list a:visited,
.stacks_in_902-list a:hover,
.stacks_in_902-list a:active {
	text-decoration: none;
}

.stacks_in_902-list a,
.stacks_in_902-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_902-list a:hover,
.stacks_in_902-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












.stacks_in_902-list .list-inline-item:not(:last-child) {

}

.stacks_in_902-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_902-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_903-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_903-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_905-list {
	list-style: circle;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_905-list {
	
	
	
}

.stacks_in_905-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_905-list a,
.stacks_in_905-list a:visited,
.stacks_in_905-list a:hover,
.stacks_in_905-list a:active {
	text-decoration: none;
}

.stacks_in_905-list a,
.stacks_in_905-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_905-list a:hover,
.stacks_in_905-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_905-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_905-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_905-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_905-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_905-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_905-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_905-list .list-inline-item:not(:last-child) {

}

.stacks_in_905-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_905-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1044-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1044-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1043-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1043-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1045-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1045-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


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

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


#stacks_in_1512-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_1512-margins.padding-advanced {
	padding: 1.00rem 1.00rem 2.00rem 1.00rem;
}

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

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

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

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

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



#stacks_in_1203-wrapper {
	
	
	
}









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




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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

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

#stacks_in_1551-wrapper.bkg-solid-color {
	background: rgba(13, 75, 161, 0.25);
}

#stacks_in_1551-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_1551-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_1551-wrapper.custom-corners,
#stacks_in_1551-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1551-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



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


#stacks_in_1551-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_1551-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_1551-wrapper {
	
	border-color: rgba(137, 166, 208, 1.00) !important;
	
	
	
	
}








	

	








#stacks_in_87-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_87-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_87-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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











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




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




.stacks_in_92-container {
	
	
	

	
	
	
	display: grid;
    grid-auto-flow: row;
		
			align-content: start;
			
		
		
	

}









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

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


#stacks_in_94-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_94-margins.padding-advanced {
	padding: 3.00rem 0.00rem 1.00rem 0.00rem;
}

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

@media (min-width: 768px) {
	
	#stacks_in_94-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_98-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h3.stacks_in_98-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_98-header {
	margin-bottom: 0;
}






.stacks_in_98-header {
	font-size: 3.00rem;
}

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

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

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

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

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



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

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


#stacks_in_101-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_101-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_102-wrapper {
	
	border-color: var(--bs-white) !important;
	
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_102-wrapper .border-badge {
	
	background-color: var(--bs-primary) !important;
	
	
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_102-wrapper .border-badge {
	
}

#stacks_in_102-wrapper.custom-width {
	width: 50%;
}


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

#stacks_in_104-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	
	
}


#stacks_in_104-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_104-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

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

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

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

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

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



#stacks_in_105-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









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







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

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


#stacks_in_109-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_109-margins.padding-advanced {
	padding: 0.00rem 0.00rem 3.00rem 0.00rem;
}

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

@media (min-width: 768px) {
	
	#stacks_in_109-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_117-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_804 .icv__label{font-size:12px}@media (min-width:600px){#image-compare-stacks_in_804 .icv__label{font-size:14px}} 






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

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


#stacks_in_1556-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_1556-margins.padding-advanced {
	padding: 5.00rem 0.00rem 0.00rem 0.00rem;
}

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

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

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

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

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



#stacks_in_123-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_123-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_123-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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











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





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

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


#stacks_in_128-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_128-margins.padding-advanced {
	padding: 0.00rem 0.00rem 4.00rem 0.00rem;
}

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

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

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

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

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



h2.stacks_in_130-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

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

}



/* Base Margins */
h2.stacks_in_130-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_130-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_130-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_130-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_130-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_130-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_130-header {
	font-size: 1.50rem;
}

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

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

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

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

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


 

#stacks_in_135-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_135-wrapper .card-header {
	
	background-color: var(--bs-gray-200);
	
	
}

#stacks_in_135-wrapper.custom-radius,
#stacks_in_135-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_135-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_135-wrapper .card-body {
	
	background-color: var(--bs-primary);
	
	
}



#stacks_in_135-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_135-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_135-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_135-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_135-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_135-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_135-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_135-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_135-wrapper .card-header h1,
#stacks_in_135-wrapper .card-header h2,
#stacks_in_135-wrapper .card-header h3,
#stacks_in_135-wrapper .card-header h4,
#stacks_in_135-wrapper .card-header h5,
#stacks_in_135-wrapper .card-header h6,
#stacks_in_135-wrapper .card-header p:last-of-type,
#stacks_in_135-wrapper .card-header small,
#stacks_in_135-wrapper .card-footer h1,
#stacks_in_135-wrapper .card-footer h2,
#stacks_in_135-wrapper .card-footer h3,
#stacks_in_135-wrapper .card-footer h4,
#stacks_in_135-wrapper .card-footer h5,
#stacks_in_135-wrapper .card-footer h6,
#stacks_in_135-wrapper .card-footer p:last-of-type,
#stacks_in_135-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_135-wrapper.card {
	
	border-color: var(--bs-gray-200) !important;
	
	
}

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

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


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


#stacks_in_135-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_135-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_135-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_135-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_135-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_135-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_135-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_135-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_135-wrapper img {
 	margin: 0 !important;
 }
 


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

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


#stacks_in_148-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_148-margins.padding-advanced {
	padding: 1.00rem 1.00rem 1.00rem 1.00rem;
}

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

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

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

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

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




	#stacks_in_150-wrapper {
		z-index: 1001;
		position: relative;
		
		top: -100px;
		margin-bottom: -100px;
		margin-top: 0;
		
		

		
		

	}


	@media (min-width: 576px) {
		#stacks_in_150-wrapper {
			

			
		}
	}
	
	@media (min-width: 768px) {
		#stacks_in_150-wrapper {
			
				
				top: -300px;
				margin-bottom: -300px;
				margin-top: 0;
				
				
			
			
			
		}
	}
	
	@media (min-width: 992px) {
		#stacks_in_150-wrapper {
			
			
			
		}
	}
	
	@media (min-width: 1200px) {
		#stacks_in_150-wrapper {
			
				
				top: -350px;
				margin-bottom: -350px;
				margin-top: 0;
				
				
			
			
			
		}
	}
	
	@media (min-width: 1400px) {
		#stacks_in_150-wrapper {
			

			
		}
	}








/* Base Margins */
.stacks_in_152.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_152.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_152.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_152.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_152.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_152.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_152.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_152.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_152.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_152.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




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

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


#stacks_in_154-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_154-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_154-margins.padding-advanced {
		padding: 0.00rem 7.00rem 0.00rem 7.00rem;
	}
	
}

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



#stacks_in_155-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}




/* Base Margins */
#stacks_in_155-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_155-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_155-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_155-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_155-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_155-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




#stacks_in_155-wrapper {
	font-size: 0.90rem;
}

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

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

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

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

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



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





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

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


#stacks_in_1524-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_1524-margins.padding-advanced {
	padding: 0.00rem 0.00rem 2.00rem 0.00rem;
}

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

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

@media (min-width: 992px) {
	
	#stacks_in_1524-margins.padding-advanced {
		padding: 1.00rem 2.00rem 2.00rem 2.00rem;
	}
	
}

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

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


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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

#stacks_in_1525-wrapper.bkg-preset {
	background: var(--bs-warning);
}

#stacks_in_1525-wrapper.bkg-solid-color {
	background: rgba(237, 246, 255, 1.00);
}

#stacks_in_1525-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_1525-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_1525-wrapper.custom-corners,
#stacks_in_1525-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1525-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



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


#stacks_in_1525-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_1525-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_1525-wrapper {
	
	
	border-color: var(--bs-primary) !important;
	
	
	
}








	

	








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

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


#stacks_in_1527-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_1527-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_1531-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

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


#stacks_in_1531-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_1531-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_1533-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_1533-header {
	font-size: 1.05rem;
}

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

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

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

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

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



#stacks_in_1536-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}




/* Base Margins */
#stacks_in_1536-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1536-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1536-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1536-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1536-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1536-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




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

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

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

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

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

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



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




.stacks_in_1538-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1538-list {
	
	color: var(--bs-primary) !important;
	
	
	
}

.stacks_in_1538-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1538-list a,
.stacks_in_1538-list a:visited,
.stacks_in_1538-list a:hover,
.stacks_in_1538-list a:active {
	text-decoration: none;
}

.stacks_in_1538-list a,
.stacks_in_1538-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1538-list a:hover,
.stacks_in_1538-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1538-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1538-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1538-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1538-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1538-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1538-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1538-list .list-inline-item:not(:last-child) {

}

.stacks_in_1538-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1538-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1539-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1539-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1541-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1541-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1542-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1542-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1543-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1543-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_1544-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}




/* Base Margins */
#stacks_in_1544-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1544-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1544-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1544-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1544-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1544-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




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

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

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

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

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

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



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






/* Base Margins */
.stacks_in_494.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_494.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_494.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_494.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_494.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_494.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_494.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_494.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_494.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_494.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




h2.stacks_in_1548-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	
	
}

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

}



/* Base Margins */
h2.stacks_in_1548-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1548-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1548-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1548-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1548-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1548-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1548-header {
	font-size: 1.50rem;
}

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

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

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

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

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



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

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


#stacks_in_137-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_137-margins.padding-advanced {
	padding: 1.00rem 0.00rem 0.00rem 0.00rem;
}

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

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

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

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

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




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

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


/* Base Margins */
#stacks_in_139-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_139-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_139-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_139-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_139-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_139-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_in_139-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_139-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(12, 97, 176, 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_139-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_139-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(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;
}

#stacks_in_139-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(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_139-wrapper .list-group-item {
	color: rgba(12, 97, 176, 1.00);
	
	background-color: var(--bs-white);
	
	

	
	border-color: var(--bs-gray-300);
	
	
}

#stacks_in_139-wrapper .list-group-item:hover,
#stacks_in_139-wrapper .list-group-item.active {
	color: rgba(46, 49, 53, 1.00) !important;
	
	background-color: var(--bs-gray-200) !important;
	
	
} 

#stacks_in_139-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_139-wrapper .accordion-collapse .list-group-item {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-100);
	
	
	
}

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


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

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


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



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

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

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

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

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


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

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

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

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

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


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

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

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

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

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


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

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

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

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

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


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

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

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

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

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


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

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

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

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

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



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









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





#stacks_in_496-wrapper {
	
	
	
}

#stacks_in_496-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_496-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_496-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_496-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_496-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_496-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_496-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_496-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}








#stacks_in_161-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_161-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_161-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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








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

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


#stacks_in_163-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_163-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) {
	
}



h2.stacks_in_165-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(110, 206, 26, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_165-header {
	font-size: 4.00rem;
}

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

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

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

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

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



#stacks_in_168-wrapper .badge {
	
	font-weight: 700;
	
}

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

#stacks_in_168-wrapper .badge {
	
	
	

	
	background: rgba(192, 132, 78, 1.00);
	background-image: linear-gradient(180deg, rgba(192, 132, 78, 1.00) 0%, rgba(187, 159, 120, 1.00) 100%);
	
	
	color: rgba(255, 255, 255, 1.00);
}

/* 1.0.1
 - removed a bunch of API calls to try and help with load time in edit and preview modes
 - Added svg refresh to resolve display issues in safari and RW preview
 - added hardware acceleration to svg graphics to increase performance
 - fixed a bug that could cause the stack to load into the editor slowly
 1.0.2
 - hotfix, editmode display bug
 1.0.5
 - Added Experimental responsive defintion feature
*/

.svg-metamorph.svgm_stacks_in_169 .svgm-group {
    display: none;
}
.svg-metamorph.svgm_stacks_in_169 .svgm-group.svgm-wide-7,
.svg-metamorph.svgm_stacks_in_169 .svgm-group.svgm-pattern-1,
.svg-metamorph.svgm_stacks_in_169 .svgm-group.svgm-special-12 {
    display: block;
}
.svg-metamorph.svgm_stacks_in_169,
.svg-metamorph.svgm_stacks_in_169 .svgm-content {
  position: relative;
  z-index: 1;
}
#stacks_in_169, #stacks_out_169 {
  overflow: visible;
}
.svg-metamorph.svgm_stacks_in_169 {
  display: inline-block;
  width: calc(100% - 1px);
  position: relative;
  margin-top: -0px;
  margin-bottom: -0px;
  
  
  margin-bottom: calc(120px - 0px);
  
  
  
}

.svg-metamorph.svgm_stacks_in_169 > .svgm-wrap-outer > .svgm-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.svg-metamorph.svgm_stacks_in_169 > .svgm-wrap-outer > .svgm-wrap svg {
  width: 100%;
  height: calc(100% + 120px + 120px);
  stroke: none;
  fill: white;
}
.svg-metamorph.svgm_stacks_in_169 > .svgm-wrap-outer > .svgm-wrap svg path.svgm-opacity {
  stroke: none;
  stroke-width: 0;
}
.svg-metamorph.svgm_stacks_in_169 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-top {
  top: 0;
  z-index: 1;
  transform: translateY(-120px);
}
.svg-metamorph.svgm_stacks_in_169 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-center {
  z-index: 2;
  height: calc(100% + 3px);
  /* top: -1.5px; */
}
.svg-metamorph.svgm_stacks_in_169 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-bottom {
  bottom: 0;
  z-index: 0;
  transform: translateY(120px) rotateZ(180deg);
}
.svg-metamorph.svgm_stacks_in_169 > .svgm-wrap-outer > .svgm-wrap.svgm-wrap-center svg {
  transform: translateY(-120px);
  /* margin-top: 1px; */
}
.svg-metamorph.svgm_stacks_in_169 > .svgm-wrap-outer > .svgm-wrap > svg {
  width: 100%;
  overflow: visible;
}
.svg-metamorph.svgm_stacks_in_169 > .svgm-wrap-outer > .svgm-wrap:after {
  background: #62C734;
}
.svg-metamorph.svgm_stacks_in_169 .svgm-content {
  position: relative;
  z-index: 3;
  min-height: 120px;
  display: grid;
  align-items: center;
  
}


.svg-metamorph.svgm_stacks_in_169 .svgm-content > div {
  
  
  
}
.svg-metamorph.svgm_stacks_in_169 .svgm-mask {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_169 > .svgm-wrap-outer {
  height: calc(100% - 0px - 0px );
  min-height: 120px;
  position: absolute;
  width: 100%;
  top: 0px;
  
  top: auto;
  bottom: 0px;
  
  transform: translateZ(0);
}


.svg-metamorph.svgm_stacks_in_169 image:not(.svgm-pattern):not(.svgm-off) {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_169 image.svgm-off {
  transform-origin: center;
}
.svg-metamorph.svgm_stacks_in_169 .svgm-pattern {
  width: 100px;
  height: 100px;
}
.svg-metamorph.svgm_stacks_in_169 .svgm-custom-pattern-1a {
  transform-origin: center;
  transform: translate(-358.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_169 .svgm-custom-pattern-1b {
  transform-origin: center;
  transform: translate(-362.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_169 .svgm-custom-pattern-2a {
  transform-origin: center;
  transform: translate(-358.000000px, 0) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_169 .svgm-custom-pattern-2b {
  transform-origin: center;
  transform: translate(-362.000000px, 0) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_169 .svgm-custom-pattern-3a {
  transform-origin: center;
  transform: translate(2518.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_169 .svgm-custom-pattern-3b {
  transform-origin: center;
  transform: translate(2522.000000px, 0);
}
.svg-metamorph.svgm_stacks_in_169 .svgm-custom-pattern-opacity-1 {
  transform-origin: center;
  transform: translate(0, 38.000000px);
}
.svg-metamorph.svgm_stacks_in_169 .svgm-custom-pattern-opacity-2 {
  transform-origin: center;
  transform: translate(0, 38.000000px) rotateY(180deg);
}
.svg-metamorph.svgm_stacks_in_169 .svgm-use-r {
  transform: scale(-1,1);
  transform-origin: 960px 0;
}
.svg-metamorph.svgm_stacks_in_169 .svgm-mask-top {
  transform: translate(0,4px) scaleX(1);
}
.svg-metamorph.svgm_stacks_in_169 .svgm-mask-bottom {
  transform: translate(0,-1px) scaleX(1);
}

@media all and (max-width: 1920px) {
  .svg-metamorph.svgm_stacks_in_169 .svgm-use {
    transform: scaleX(1);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-use-r {
    transform: scaleX(1) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1680px) {
  .svg-metamorph.svgm_stacks_in_169 .svgm-use {
    transform: scaleX(0.875);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-use-r {
    transform: scaleX(0.875) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1440px) {
  .svg-metamorph.svgm_stacks_in_169 .svgm-use {
    transform: scaleX(0.75);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-use-r {
    transform: scaleX(0.75) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1280px) {
  .svg-metamorph.svgm_stacks_in_169 .svgm-use {
    transform: scaleX(0.667);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-use-r {
    transform: scaleX(0.667) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (max-width: 1152px) {
  .svg-metamorph.svgm_stacks_in_169 .svgm-use {
    transform: scaleX(0.6);
    transform-origin: 960px bottom;
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-use-r {
    transform: scaleX(0.6) rotateY(180deg);
    transform-origin: 960px 0;
  }
}
@media all and (min-width: 1921px) {
  .svg-metamorph.svgm_stacks_in_169 .svgm-mask {
    transform: scaleX(1.34);
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-mask-top {
    transform: translate(0,4px) scaleX(1.34);
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(1.34);
  }
}
@media all and (min-width: 2561px) {
  .svg-metamorph.svgm_stacks_in_169 .svgm-mask {
    transform: scaleX(1.67);
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-mask-top {
    transform: translate(0,4px) scaleX(1.67);
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(1.67);
  }
}
@media all and (min-width: 3201px) {
  .svg-metamorph.svgm_stacks_in_169 .svgm-mask {
    transform: scaleX(2);
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-mask-top {
    transform: translate(0,4px) scaleX(2);
  }
  .svg-metamorph.svgm_stacks_in_169 .svgm-mask-bottom {
    transform: translate(0,-1px) scaleX(2);
  }
}




/**/



#stacks_in_170-wrapper {
	
}

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


/* Advanced Mode */
#stacks_in_170-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_170-wrapper.fdy-container {
	max-width: 540px;
  }
}



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



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











@media (max-width: 575px) {
	
}





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

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


#stacks_in_176-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_176-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

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

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

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

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

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



h2.stacks_in_178-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_178-header {
	font-size: 1.75rem;
}

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

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

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

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

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


#stacks_out_182 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_182 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_182 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_182 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_182 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_182 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_182 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}


 

#stacks_in_184-wrapper.card {
	background: transparent !important;
	overflow: hidden !important;
}

#stacks_in_184-wrapper .card-header {
	
	background-color: var(--bs-white);
	
	
}

#stacks_in_184-wrapper.custom-radius,
#stacks_in_184-wrapper .card-body.custom-radius {
	border-radius: 13px 13px 13px 13px;
}

#stacks_in_184-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_184-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_184-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_184-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_184-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_184-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_184-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_184-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_184-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_184-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_184-wrapper .card-header h1,
#stacks_in_184-wrapper .card-header h2,
#stacks_in_184-wrapper .card-header h3,
#stacks_in_184-wrapper .card-header h4,
#stacks_in_184-wrapper .card-header h5,
#stacks_in_184-wrapper .card-header h6,
#stacks_in_184-wrapper .card-header p:last-of-type,
#stacks_in_184-wrapper .card-header small,
#stacks_in_184-wrapper .card-footer h1,
#stacks_in_184-wrapper .card-footer h2,
#stacks_in_184-wrapper .card-footer h3,
#stacks_in_184-wrapper .card-footer h4,
#stacks_in_184-wrapper .card-footer h5,
#stacks_in_184-wrapper .card-footer h6,
#stacks_in_184-wrapper .card-footer p:last-of-type,
#stacks_in_184-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_184-wrapper.card {
	
	
	border-color: rgba(177, 112, 62, 1.00) !important;
	
}

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

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


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


#stacks_in_184-wrapper > .card-body.custom-padding {
	padding: 0.90rem;
}

#stacks_in_184-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_184-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_184-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_184-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_184-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_184-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_184-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_184-wrapper img {
 	margin: 0 !important;
 }
 


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

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


#stacks_in_220-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_220-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_222-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(177, 112, 62, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_222-header {
	font-size: 3.00rem;
}

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

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

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

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

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




/* Base Margins */
.stacks_in_502.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_502.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_502.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_502.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_502.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_502.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_502.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_502.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_502.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_502.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




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

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


#stacks_in_186-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_186-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_188.blu-svg{text-align:center}#stacks_in_188.blu-svg svg{width:75.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_188.blu-svg{text-align:center}#stacks_in_188.blu-svg svg{width:75.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_188.blu-svg{text-align:center}#stacks_in_188.blu-svg svg{width:86.00px}}@media screen and (min-width:1000px){#stacks_in_188.blu-svg{text-align:center}#stacks_in_188.blu-svg svg{width:96.00px}}  #stacks_in_188.blu-svg svg rectange,#stacks_in_188.blu-svg svg circle,#stacks_in_188.blu-svg svg ellipse,#stacks_in_188.blu-svg svg polygon,#stacks_in_188.blu-svg svg polyline,#stacks_in_188.blu-svg svg path{fill:rgba(51, 51, 51, 0.40)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_188.blu-svg svg:hover rectange,#stacks_in_188.blu-svg svg:hover circle,#stacks_in_188.blu-svg svg:hover ellipse,#stacks_in_188.blu-svg svg:hover polygon,#stacks_in_188.blu-svg svg:hover polyline,#stacks_in_188.blu-svg svg:hover path{fill:rgba(51, 51, 51, 1.00)!important} #stacks_in_188.blu-svg{float:none}#stacks_in_188 a,#stacks_in_188 svg{cursor:auto}



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

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


#stacks_in_191-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_191-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_192-wrapper,
#stacks_in_192-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

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

#stacks_in_192-wrapper.bkg-solid-color {
	background: rgba(193, 132, 78, 1.00);
}

#stacks_in_192-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_192-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_192-wrapper.custom-corners,
#stacks_in_192-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_192-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



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


#stacks_in_192-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_192-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_192-wrapper {
	
	border-color: rgba(177, 112, 62, 1.00) !important;
	
	
	
	
}








	

	








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

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


#stacks_in_194-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_194-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_196-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(231, 231, 231, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_196-header {
	font-size: 2.10rem;
}

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

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

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

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

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



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

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


#stacks_in_199-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_199-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_200-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_200-header {
	font-size: 3.00rem;
}

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

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

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

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

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



#stacks_in_203-wrapper .badge {
	
	font-weight: 700;
	
}

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

#stacks_in_203-wrapper .badge {
	
	
	

	
	background: rgba(180, 119, 60, 1.00);
	background-image: linear-gradient(180deg, rgba(180, 119, 60, 1.00) 0%, rgba(192, 147, 113, 1.00) 100%);
	
	
	color: rgba(255, 255, 255, 1.00);
}


/* Base Margins */
#stacks_in_203-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_203-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_203-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_203-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_203-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_203-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



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

#stacks_in_204-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_204-wrapper {
	
	
	
	color: var(--bs-dark);
	
}



/* Base Margins */
#stacks_in_204-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_204-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_204-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_204-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_204-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_204-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}
#stacks_out_206 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_206 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_206 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_206 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_206 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_206 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_206 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (my-unique-id)";
	text-transform: capitalize;
}




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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

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

#stacks_in_207-wrapper.bkg-solid-color {
	background: rgba(192, 132, 78, 1.00);
}

#stacks_in_207-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_207-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_207-wrapper.custom-corners,
#stacks_in_207-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_207-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



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


#stacks_in_207-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_207-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_207-wrapper {
	
	border-color: rgba(192, 132, 78, 1.00) !important;
	
	
	
	
}








	

	





/* Base Margins */
#stacks_in_207-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_207-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_207-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_207-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_207-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_207-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




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

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


#stacks_in_209-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_209-margins.padding-advanced {
	padding: 1.00rem 0.00rem 0.50rem 0.00rem;
}

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

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

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

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

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



h2.stacks_in_211-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_211-header {
	font-size: 1.45rem;
}

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

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

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

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

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



h2.stacks_in_214-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_214-header {
	font-size: 1.45rem;
}

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

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

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

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

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



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

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


#stacks_in_216-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_216-margins.padding-advanced {
	padding: 0.00rem 0.50rem 0.50rem 0.50rem;
}

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

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

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

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

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



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









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





#stacks_in_508-wrapper {
	
	
	
}

#stacks_in_508-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_508-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_508-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_508-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_508-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_508-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_508-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_508-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



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

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


#stacks_in_225-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_225-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

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

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

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

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

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



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

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


#stacks_in_226-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_226-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_228-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






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

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

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

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

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

@media (min-width: 1400px) {
	.stacks_in_228-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_231 {
  /*! 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_231 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_231 body {
    margin: 0; }
  #listify_stacks_in_231 article, #listify_stacks_in_231 aside, #listify_stacks_in_231 details, #listify_stacks_in_231 figcaption, #listify_stacks_in_231 figure, #listify_stacks_in_231 footer, #listify_stacks_in_231 header, #listify_stacks_in_231 hgroup, #listify_stacks_in_231 main, #listify_stacks_in_231 menu, #listify_stacks_in_231 nav, #listify_stacks_in_231 section, #listify_stacks_in_231 summary {
    display: block; }
  #listify_stacks_in_231 audio, #listify_stacks_in_231 canvas, #listify_stacks_in_231 progress, #listify_stacks_in_231 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_231 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_231 [hidden], #listify_stacks_in_231 template {
    display: none; }
  #listify_stacks_in_231 a {
    background-color: transparent; }
    #listify_stacks_in_231 a:active, #listify_stacks_in_231 a:hover {
      outline: 0; }
  #listify_stacks_in_231 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_231 b, #listify_stacks_in_231 strong {
    font-weight: bold; }
  #listify_stacks_in_231 dfn {
    font-style: italic; }
  #listify_stacks_in_231 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_231 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_231 small {
    font-size: 80%; }
  #listify_stacks_in_231 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_231 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_231 sub {
    bottom: -0.25em; }
  #listify_stacks_in_231 img {
    border: 0; }
  #listify_stacks_in_231 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_231 figure {
    margin: 1em 40px; }
  #listify_stacks_in_231 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_231 pre {
    overflow: auto; }
  #listify_stacks_in_231 code, #listify_stacks_in_231 kbd, #listify_stacks_in_231 pre, #listify_stacks_in_231 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_231 button, #listify_stacks_in_231 input, #listify_stacks_in_231 optgroup, #listify_stacks_in_231 select, #listify_stacks_in_231 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_231 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_231 select {
    text-transform: none; }
  #listify_stacks_in_231 button, #listify_stacks_in_231 html input[type="button"], #listify_stacks_in_231 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_231 button[disabled], #listify_stacks_in_231 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_231 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_231 input {
    line-height: normal; }
    #listify_stacks_in_231 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_231 input[type="checkbox"], #listify_stacks_in_231 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_231 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_231 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_231 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_231 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_231 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_231 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_231 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_231 textarea {
    overflow: auto; }
  #listify_stacks_in_231 optgroup {
    font-weight: bold; }
  #listify_stacks_in_231 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_231 td, #listify_stacks_in_231 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_231 {
    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_231 [class^="w-icon-"], #listify_stacks_in_231 [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_231 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_231 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_231 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_231 .w-icon-arrow-down:before, #listify_stacks_in_231 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_231 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_231 html {
    height: 100%; }
  #listify_stacks_in_231 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_231 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_231 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_231 .w-block {
    display: block; }
  #listify_stacks_in_231 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_231 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_231 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_231 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_231 .w-hidden {
    display: none; }
  #listify_stacks_in_231 .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_231 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_231 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_231 .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_231 .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_231 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_231 h1, #listify_stacks_in_231 h2, #listify_stacks_in_231 h3, #listify_stacks_in_231 h4, #listify_stacks_in_231 h5, #listify_stacks_in_231 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_231 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_231 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_231 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_231 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_231 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_231 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_231 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_231 a:focus {
    outline: 0; }
  #listify_stacks_in_231 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_231 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_231 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_231 ul, #listify_stacks_in_231 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_231 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_231 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_231 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_231 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_231 .w-video iframe, #listify_stacks_in_231 .w-video object, #listify_stacks_in_231 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_231 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_231 button, #listify_stacks_in_231 html input[type="button"], #listify_stacks_in_231 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_231 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_231 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_231 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_231 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_231 .w-input, #listify_stacks_in_231 .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_231 .w-input:-moz-placeholder, #listify_stacks_in_231 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_231 .w-input::-moz-placeholder, #listify_stacks_in_231 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_231 .w-input:-ms-input-placeholder, #listify_stacks_in_231 .w-select:-ms-input-placeholder, #listify_stacks_in_231 .w-input::-webkit-input-placeholder, #listify_stacks_in_231 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_231 .w-input:focus, #listify_stacks_in_231 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_231 .w-input[disabled], #listify_stacks_in_231 .w-select[disabled], #listify_stacks_in_231 .w-input[readonly], #listify_stacks_in_231 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_231 fieldset[disabled] .w-input, #listify_stacks_in_231 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_231 textarea.w-input, #listify_stacks_in_231 textarea.w-select {
    height: auto; }
  #listify_stacks_in_231 .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_231 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_231 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_231 .w-checkbox, #listify_stacks_in_231 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_231 .w-checkbox:before, #listify_stacks_in_231 .w-radio:before, #listify_stacks_in_231 .w-checkbox:after, #listify_stacks_in_231 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_231 .w-checkbox:after, #listify_stacks_in_231 .w-radio:after {
    clear: both; }
  #listify_stacks_in_231 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_231 .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_231 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_231 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_231 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_231 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_231 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_231 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_231 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_231 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_231 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_231 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_231 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_231 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_231 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_231 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_231 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_231 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_231 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_231 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_231 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_231 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_231 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_231 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_231 .w-container {
      max-width: 728px; }
    #listify_stacks_in_231 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_231 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_231 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_231 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_231 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_231 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_231 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_231 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_231 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_231 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_231 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_231 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_231 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_231 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_231 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_231 .w-hidden-main, #listify_stacks_in_231 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_231 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_231 .w-row, #listify_stacks_in_231 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_231 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_231 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_231 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_231 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_231 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_231 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_231 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_231 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_231 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_231 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_231 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_231 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_231 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_231 .w-container {
      max-width: none; }
    #listify_stacks_in_231 .w-hidden-main, #listify_stacks_in_231 .w-hidden-medium, #listify_stacks_in_231 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_231 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_231 .w-col {
      width: 100%; }
    #listify_stacks_in_231 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_231 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_231 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_231 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_231 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_231 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_231 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_231 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_231 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_231 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_231 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_231 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_231 .w-widget {
    position: relative; }
  #listify_stacks_in_231 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_231 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_231 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_231 .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_231 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_231 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_231 .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_231 .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_231 .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_231 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_231 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_231 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_231 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_231 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_231 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_231 .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_231 .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_231 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_231 .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_231 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_231 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_231 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_231 .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_231 .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_231 .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_231 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_231 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_231 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_231 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_231 .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_231 .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_231 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_231 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_231 .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_231 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_231 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_231 .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_231 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_231 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_231 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_231 .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_231 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_231 .w-slider-arrow-left, #listify_stacks_in_231 .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_231 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_231 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_231 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_231 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_231 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_231 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_231 .w-icon-slider-left, #listify_stacks_in_231 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_231 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_231 .w-dropdown-btn, #listify_stacks_in_231 .w-dropdown-toggle, #listify_stacks_in_231 .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_231 .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_231 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_231 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_231 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_231 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_231 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_231 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_231 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_231 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_231 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_231 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_231 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_231 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_231 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_231 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_231 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_231 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_231 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_231 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_231 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_231 .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_231 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_231 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_231 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_231 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_231 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_231 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_231 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_231 .w-lightbox-frame, #listify_stacks_in_231 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_231 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_231 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_231 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_231 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_231 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_231 .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_231 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_231 .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_231 .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_231 .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_231 .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_231 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_231 .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_231 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_231 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_231 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_231 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_231 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_231 .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_231 .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_231 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_231 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_231 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_231 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_231 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_231 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_231 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_231 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_231 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_231 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_231 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_231 .w-lightbox-left, #listify_stacks_in_231 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_231 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_231 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_231 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_231 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_231 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_231 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_231 .w-richtext ol, #listify_stacks_in_231 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_231 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_231 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_231 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_231 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_231 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_231 .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_231 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_231 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_231 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_231 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_231 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_231 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_231 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_231 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_231 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_231 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_231 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_231 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_231 .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_231 .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_231 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_231 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_231 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_231 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_231 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_231 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_231 .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_231 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_231 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_231 .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_231 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_231 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_231 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_231 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_231 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_231 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_231 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_231 .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_231 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_231 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_231 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_231 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_231 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_231 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_231 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_231 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_231 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_231 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_231 .w-tabs {
    position: relative; }
    #listify_stacks_in_231 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_231 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_231 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_231 .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_231 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_231 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_231 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_231 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_231 .w-tab-link {
      display: block; } }
  #listify_stacks_in_231 .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_231 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_231 .w-dyn-bind-empty, #listify_stacks_in_231 .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_231 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_231 .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_231 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_231 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_231 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_231 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_231 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_231 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_231 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_231 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_231 .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_231 .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_231 .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_231 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_231 .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_231 .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_231 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_231 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_231 .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_231 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_231 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_231.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_231.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_231.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_232.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_232.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_232.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_232.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_232.list-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_232.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_232.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_232.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_232.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_232.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_232.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_232.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_234.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_234.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_234.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_234.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_234.list-item .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_234.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_234.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_234.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_234.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_234.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_234.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_234.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_236.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_236.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_236.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_236.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_236.list-item .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_236.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_236.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_236.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_236.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_236.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_236.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_236.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_238.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_238.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_238.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_238.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_238.list-item .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_238.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_238.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_238.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_238.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_238.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_238.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_238.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_240.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_240.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_240.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_240.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_240.list-item .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_240.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_240.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_240.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_240.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_240.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_240.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_240.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_242.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_242.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_242.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_242.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_242.list-item .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_242.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_242.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_242.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_242.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_242.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_242.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_242.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_244.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_244.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_244.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_244.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_244.list-item .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_244.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_244.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_244.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_244.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_244.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_244.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_244.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_246.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_246.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_246.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_246.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_246.list-item .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_246.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_246.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_246.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_246.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_246.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_246.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_246.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_248.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_248.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_248.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_248.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_248.list-item .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_248.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_248.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_248.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_248.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_248.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_248.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_248.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_250.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_250.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_250.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_250.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_250.list-item .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_250.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_250.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_250.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_250.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_250.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_250.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_250.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_252.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_252.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_252.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_252.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_252.list-item .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_252.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_252.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_252.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_252.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_252.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_252.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_252.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_254.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_254.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_254.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_254.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_254.list-item .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_254.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_254.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_254.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_254.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_254.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_254.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_254.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_256.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_256.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_256.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_256.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_256.list-item .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_256.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_256.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_256.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_256.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_256.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_256.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_256.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_258.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_258.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_258.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_258.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_258.list-item .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_258.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_258.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_258.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_258.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_258.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_258.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_258.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_260.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_260.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_260.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_260.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_260.list-item .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_260.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_260.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_260.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_260.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_260.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_260.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_260.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_262.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_262.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_262.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_262.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_262.list-item .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_262.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_262.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_262.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_262.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_262.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_262.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_262.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_264.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_264.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_264.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_264.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_264.list-item .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_264.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_264.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_264.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_264.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_264.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_264.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_264.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_266.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_266.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_266.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_266.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_266.list-item .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_266.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_266.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_266.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_266.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_266.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_266.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_266.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_268.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_268.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_268.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_268.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_268.list-item .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_268.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_268.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_268.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_268.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_268.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_268.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_268.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_270.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_270.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_270.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_270.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_270.list-item .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_270.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_270.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_270.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_270.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_270.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_270.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_270.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_272.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_272.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_272.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_272.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_272.list-item .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_272.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_272.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_272.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_272.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_272.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_272.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_272.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_274.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_274.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_274.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_274.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_274.list-item .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_274.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_274.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_274.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_274.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_274.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_274.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_274.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_276.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_276.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_276.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_276.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_276.list-item .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_276.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_276.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_276.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_276.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_276.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_276.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_276.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_278.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_278.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_278.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_278.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_278.list-item .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_278.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_278.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_278.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_278.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_278.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_278.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_278.hide-d {
    display: none; } }

/*  */


#stacks_out_282 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_282 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_282 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_282 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_282 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_282 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_282 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}


 

#stacks_in_284-wrapper.card {
	background: transparent !important;
	overflow: hidden !important;
}

#stacks_in_284-wrapper .card-header {
	
	background-color: var(--bs-white);
	
	
}

#stacks_in_284-wrapper.custom-radius,
#stacks_in_284-wrapper .card-body.custom-radius {
	border-radius: 13px 13px 13px 13px;
}

#stacks_in_284-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_284-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_284-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_284-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_284-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_284-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_284-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_284-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_284-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_284-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_284-wrapper .card-header h1,
#stacks_in_284-wrapper .card-header h2,
#stacks_in_284-wrapper .card-header h3,
#stacks_in_284-wrapper .card-header h4,
#stacks_in_284-wrapper .card-header h5,
#stacks_in_284-wrapper .card-header h6,
#stacks_in_284-wrapper .card-header p:last-of-type,
#stacks_in_284-wrapper .card-header small,
#stacks_in_284-wrapper .card-footer h1,
#stacks_in_284-wrapper .card-footer h2,
#stacks_in_284-wrapper .card-footer h3,
#stacks_in_284-wrapper .card-footer h4,
#stacks_in_284-wrapper .card-footer h5,
#stacks_in_284-wrapper .card-footer h6,
#stacks_in_284-wrapper .card-footer p:last-of-type,
#stacks_in_284-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_284-wrapper.card {
	
	
	border-color: rgba(126, 47, 22, 1.00) !important;
	
}

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

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


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


#stacks_in_284-wrapper > .card-body.custom-padding {
	padding: 0.90rem;
}

#stacks_in_284-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_284-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_284-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_284-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_284-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_284-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_284-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_284-wrapper img {
 	margin: 0 !important;
 }
 


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

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


#stacks_in_320-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_320-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_322-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(126, 47, 22, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_322-header {
	font-size: 3.00rem;
}

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

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

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

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

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




/* Base Margins */
.stacks_in_561.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_561.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_561.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_561.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_561.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_561.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_561.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_561.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_561.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_561.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




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

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


#stacks_in_286-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_286-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_288.blu-svg{text-align:center}#stacks_in_288.blu-svg svg{width:75.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_288.blu-svg{text-align:center}#stacks_in_288.blu-svg svg{width:75.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_288.blu-svg{text-align:center}#stacks_in_288.blu-svg svg{width:86.00px}}@media screen and (min-width:1000px){#stacks_in_288.blu-svg{text-align:center}#stacks_in_288.blu-svg svg{width:96.00px}}  #stacks_in_288.blu-svg svg rectange,#stacks_in_288.blu-svg svg circle,#stacks_in_288.blu-svg svg ellipse,#stacks_in_288.blu-svg svg polygon,#stacks_in_288.blu-svg svg polyline,#stacks_in_288.blu-svg svg path{fill:rgba(51, 51, 51, 0.40)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_288.blu-svg svg:hover rectange,#stacks_in_288.blu-svg svg:hover circle,#stacks_in_288.blu-svg svg:hover ellipse,#stacks_in_288.blu-svg svg:hover polygon,#stacks_in_288.blu-svg svg:hover polyline,#stacks_in_288.blu-svg svg:hover path{fill:rgba(51, 51, 51, 0.40)!important} #stacks_in_288.blu-svg{float:none}#stacks_in_288 a,#stacks_in_288 svg{cursor:auto}



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

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


#stacks_in_291-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_291-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_292-wrapper,
#stacks_in_292-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

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

#stacks_in_292-wrapper.bkg-solid-color {
	background: rgba(126, 47, 22, 1.00);
}

#stacks_in_292-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_292-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_292-wrapper.custom-corners,
#stacks_in_292-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_292-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



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


#stacks_in_292-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_292-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_292-wrapper {
	
	border-color: rgba(177, 112, 62, 1.00) !important;
	
	
	
	
}








	

	








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

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


#stacks_in_294-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_294-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_296-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(231, 231, 231, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_296-header {
	font-size: 1.90rem;
}

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

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

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

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

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



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

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


#stacks_in_299-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_299-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_300-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_300-header {
	font-size: 3.00rem;
}

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

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

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

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

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



#stacks_in_303-wrapper .badge {
	
	font-weight: 700;
	
}

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

#stacks_in_303-wrapper .badge {
	
	
	

	
	background: rgba(126, 47, 22, 1.00);
	background-image: linear-gradient(180deg, rgba(126, 47, 22, 1.00) 0%, rgba(126, 47, 22, 0.70) 100%);
	
	
	color: rgba(255, 255, 255, 1.00);
}


/* Base Margins */
#stacks_in_303-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_303-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_303-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_303-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_303-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_303-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



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

#stacks_in_304-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_304-wrapper {
	
	
	
	color: var(--bs-dark);
	
}



/* Base Margins */
#stacks_in_304-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_304-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_304-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_304-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_304-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_304-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}
#stacks_out_306 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_306 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_306 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_306 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_306 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_306 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_306 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (my-unique-id)";
	text-transform: capitalize;
}




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

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

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

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


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

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

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

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



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

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






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



	

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



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



	
	

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

#stacks_in_307-wrapper.bkg-solid-color {
	background: rgba(126, 47, 22, 1.00);
}

#stacks_in_307-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_307-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_307-wrapper.custom-corners,
#stacks_in_307-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_307-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



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


#stacks_in_307-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_307-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_307-wrapper {
	
	border-color: rgba(192, 132, 78, 1.00) !important;
	
	
	
	
}








	

	





/* Base Margins */
#stacks_in_307-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_307-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_307-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_307-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_307-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_307-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




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

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


#stacks_in_309-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_309-margins.padding-advanced {
	padding: 1.00rem 0.50rem 0.50rem 0.50rem;
}

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

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

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

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

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



h2.stacks_in_311-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_311-header {
	font-size: 2.20rem;
}

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

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

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

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

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



h2.stacks_in_314-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_314-header {
	font-size: 2.20rem;
}

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

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

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

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

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



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

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


#stacks_in_316-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_316-margins.padding-advanced {
	padding: 0.00rem 0.50rem 0.50rem 0.50rem;
}

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

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

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

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

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



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









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





#stacks_in_567-wrapper {
	
	
	
}

#stacks_in_567-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_567-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_567-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_567-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_567-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_567-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_567-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_567-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



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

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


#stacks_in_325-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_325-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

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

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

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

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

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



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

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


#stacks_in_326-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_326-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_328-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






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

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

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

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

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

@media (min-width: 1400px) {
	.stacks_in_328-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_331 {
  /*! 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_331 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_331 body {
    margin: 0; }
  #listify_stacks_in_331 article, #listify_stacks_in_331 aside, #listify_stacks_in_331 details, #listify_stacks_in_331 figcaption, #listify_stacks_in_331 figure, #listify_stacks_in_331 footer, #listify_stacks_in_331 header, #listify_stacks_in_331 hgroup, #listify_stacks_in_331 main, #listify_stacks_in_331 menu, #listify_stacks_in_331 nav, #listify_stacks_in_331 section, #listify_stacks_in_331 summary {
    display: block; }
  #listify_stacks_in_331 audio, #listify_stacks_in_331 canvas, #listify_stacks_in_331 progress, #listify_stacks_in_331 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_331 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_331 [hidden], #listify_stacks_in_331 template {
    display: none; }
  #listify_stacks_in_331 a {
    background-color: transparent; }
    #listify_stacks_in_331 a:active, #listify_stacks_in_331 a:hover {
      outline: 0; }
  #listify_stacks_in_331 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_331 b, #listify_stacks_in_331 strong {
    font-weight: bold; }
  #listify_stacks_in_331 dfn {
    font-style: italic; }
  #listify_stacks_in_331 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_331 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_331 small {
    font-size: 80%; }
  #listify_stacks_in_331 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_331 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_331 sub {
    bottom: -0.25em; }
  #listify_stacks_in_331 img {
    border: 0; }
  #listify_stacks_in_331 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_331 figure {
    margin: 1em 40px; }
  #listify_stacks_in_331 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_331 pre {
    overflow: auto; }
  #listify_stacks_in_331 code, #listify_stacks_in_331 kbd, #listify_stacks_in_331 pre, #listify_stacks_in_331 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_331 button, #listify_stacks_in_331 input, #listify_stacks_in_331 optgroup, #listify_stacks_in_331 select, #listify_stacks_in_331 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_331 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_331 select {
    text-transform: none; }
  #listify_stacks_in_331 button, #listify_stacks_in_331 html input[type="button"], #listify_stacks_in_331 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_331 button[disabled], #listify_stacks_in_331 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_331 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_331 input {
    line-height: normal; }
    #listify_stacks_in_331 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_331 input[type="checkbox"], #listify_stacks_in_331 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_331 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_331 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_331 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_331 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_331 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_331 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_331 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_331 textarea {
    overflow: auto; }
  #listify_stacks_in_331 optgroup {
    font-weight: bold; }
  #listify_stacks_in_331 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_331 td, #listify_stacks_in_331 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_331 {
    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_331 [class^="w-icon-"], #listify_stacks_in_331 [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_331 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_331 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_331 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_331 .w-icon-arrow-down:before, #listify_stacks_in_331 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_331 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_331 html {
    height: 100%; }
  #listify_stacks_in_331 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_331 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_331 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_331 .w-block {
    display: block; }
  #listify_stacks_in_331 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_331 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_331 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_331 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_331 .w-hidden {
    display: none; }
  #listify_stacks_in_331 .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_331 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_331 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_331 .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_331 .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_331 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_331 h1, #listify_stacks_in_331 h2, #listify_stacks_in_331 h3, #listify_stacks_in_331 h4, #listify_stacks_in_331 h5, #listify_stacks_in_331 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_331 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_331 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_331 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_331 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_331 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_331 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_331 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_331 a:focus {
    outline: 0; }
  #listify_stacks_in_331 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_331 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_331 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_331 ul, #listify_stacks_in_331 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_331 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_331 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_331 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_331 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_331 .w-video iframe, #listify_stacks_in_331 .w-video object, #listify_stacks_in_331 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_331 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_331 button, #listify_stacks_in_331 html input[type="button"], #listify_stacks_in_331 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_331 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_331 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_331 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_331 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_331 .w-input, #listify_stacks_in_331 .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_331 .w-input:-moz-placeholder, #listify_stacks_in_331 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_331 .w-input::-moz-placeholder, #listify_stacks_in_331 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_331 .w-input:-ms-input-placeholder, #listify_stacks_in_331 .w-select:-ms-input-placeholder, #listify_stacks_in_331 .w-input::-webkit-input-placeholder, #listify_stacks_in_331 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_331 .w-input:focus, #listify_stacks_in_331 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_331 .w-input[disabled], #listify_stacks_in_331 .w-select[disabled], #listify_stacks_in_331 .w-input[readonly], #listify_stacks_in_331 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_331 fieldset[disabled] .w-input, #listify_stacks_in_331 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_331 textarea.w-input, #listify_stacks_in_331 textarea.w-select {
    height: auto; }
  #listify_stacks_in_331 .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_331 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_331 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_331 .w-checkbox, #listify_stacks_in_331 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_331 .w-checkbox:before, #listify_stacks_in_331 .w-radio:before, #listify_stacks_in_331 .w-checkbox:after, #listify_stacks_in_331 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_331 .w-checkbox:after, #listify_stacks_in_331 .w-radio:after {
    clear: both; }
  #listify_stacks_in_331 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_331 .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_331 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_331 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_331 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_331 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_331 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_331 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_331 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_331 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_331 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_331 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_331 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_331 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_331 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_331 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_331 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_331 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_331 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_331 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_331 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_331 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_331 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_331 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_331 .w-container {
      max-width: 728px; }
    #listify_stacks_in_331 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_331 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_331 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_331 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_331 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_331 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_331 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_331 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_331 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_331 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_331 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_331 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_331 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_331 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_331 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_331 .w-hidden-main, #listify_stacks_in_331 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_331 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_331 .w-row, #listify_stacks_in_331 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_331 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_331 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_331 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_331 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_331 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_331 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_331 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_331 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_331 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_331 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_331 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_331 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_331 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_331 .w-container {
      max-width: none; }
    #listify_stacks_in_331 .w-hidden-main, #listify_stacks_in_331 .w-hidden-medium, #listify_stacks_in_331 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_331 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_331 .w-col {
      width: 100%; }
    #listify_stacks_in_331 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_331 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_331 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_331 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_331 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_331 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_331 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_331 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_331 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_331 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_331 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_331 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_331 .w-widget {
    position: relative; }
  #listify_stacks_in_331 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_331 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_331 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_331 .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_331 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_331 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_331 .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_331 .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_331 .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_331 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_331 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_331 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_331 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_331 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_331 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_331 .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_331 .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_331 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_331 .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_331 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_331 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_331 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_331 .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_331 .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_331 .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_331 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_331 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_331 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_331 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_331 .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_331 .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_331 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_331 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_331 .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_331 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_331 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_331 .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_331 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_331 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_331 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_331 .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_331 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_331 .w-slider-arrow-left, #listify_stacks_in_331 .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_331 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_331 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_331 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_331 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_331 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_331 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_331 .w-icon-slider-left, #listify_stacks_in_331 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_331 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_331 .w-dropdown-btn, #listify_stacks_in_331 .w-dropdown-toggle, #listify_stacks_in_331 .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_331 .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_331 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_331 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_331 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_331 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_331 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_331 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_331 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_331 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_331 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_331 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_331 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_331 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_331 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_331 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_331 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_331 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_331 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_331 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_331 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_331 .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_331 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_331 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_331 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_331 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_331 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_331 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_331 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_331 .w-lightbox-frame, #listify_stacks_in_331 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_331 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_331 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_331 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_331 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_331 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_331 .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_331 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_331 .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_331 .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_331 .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_331 .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_331 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_331 .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_331 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_331 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_331 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_331 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_331 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_331 .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_331 .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_331 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_331 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_331 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_331 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_331 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_331 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_331 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_331 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_331 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_331 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_331 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_331 .w-lightbox-left, #listify_stacks_in_331 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_331 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_331 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_331 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_331 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_331 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_331 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_331 .w-richtext ol, #listify_stacks_in_331 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_331 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_331 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_331 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_331 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_331 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_331 .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_331 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_331 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_331 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_331 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_331 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_331 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_331 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_331 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_331 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_331 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_331 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_331 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_331 .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_331 .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_331 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_331 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_331 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_331 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_331 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_331 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_331 .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_331 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_331 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_331 .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_331 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_331 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_331 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_331 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_331 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_331 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_331 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_331 .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_331 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_331 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_331 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_331 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_331 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_331 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_331 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_331 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_331 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_331 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_331 .w-tabs {
    position: relative; }
    #listify_stacks_in_331 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_331 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_331 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_331 .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_331 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_331 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_331 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_331 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_331 .w-tab-link {
      display: block; } }
  #listify_stacks_in_331 .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_331 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_331 .w-dyn-bind-empty, #listify_stacks_in_331 .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_331 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_331 .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_331 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_331 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_331 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_331 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_331 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_331 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_331 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_331 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_331 .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_331 .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_331 .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_331 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_331 .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_331 .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_331 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_331 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_331 .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_331 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_331 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_331.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_331.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_331.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_332.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_332.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_332.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_332.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_332.list-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_332.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_332.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_332.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_332.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_332.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_332.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_332.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_334.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_334.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_334.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_334.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_334.list-item .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_334.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_334.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_334.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_334.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_334.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_334.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_334.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_336.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_336.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_336.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_336.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_336.list-item .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_336.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_336.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_336.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_336.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_336.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_336.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_336.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_338.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_338.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_338.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_338.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_338.list-item .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_338.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_338.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_338.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_338.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_338.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_338.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_338.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_340.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_340.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_340.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_340.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_340.list-item .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_340.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_340.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_340.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_340.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_340.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_340.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_340.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_342.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_342.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_342.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_342.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_342.list-item .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_342.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_342.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_342.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_342.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_342.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_342.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_342.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_344.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_344.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_344.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_344.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_344.list-item .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_344.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_344.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_344.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_344.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_344.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_344.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_344.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_346.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_346.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_346.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_346.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_346.list-item .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_346.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_346.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_346.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_346.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_346.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_346.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_346.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_348.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_348.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_348.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_348.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_348.list-item .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_348.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_348.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_348.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_348.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_348.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_348.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_348.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_350.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_350.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_350.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_350.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_350.list-item .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_350.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_350.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_350.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_350.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_350.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_350.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_350.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_352.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_352.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_352.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_352.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_352.list-item .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_352.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_352.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_352.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_352.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_352.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_352.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_352.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_354.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_354.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_354.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_354.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_354.list-item .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_354.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_354.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_354.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_354.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_354.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_354.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_354.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_356.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_356.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_356.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_356.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_356.list-item .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_356.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_356.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_356.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_356.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_356.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_356.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_356.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_358.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_358.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_358.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_358.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_358.list-item .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_358.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_358.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_358.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_358.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_358.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_358.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_358.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_360.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_360.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_360.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_360.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_360.list-item .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_360.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_360.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_360.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_360.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_360.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_360.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_360.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_362.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_362.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_362.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_362.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_362.list-item .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_362.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_362.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_362.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_362.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_362.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_362.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_362.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_364.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_364.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_364.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_364.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_364.list-item .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_364.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_364.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_364.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_364.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_364.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_364.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_364.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_366.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_366.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_366.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_366.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_366.list-item .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_366.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_366.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_366.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_366.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_366.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_366.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_366.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_368.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_368.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_368.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_368.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_368.list-item .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_368.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_368.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_368.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_368.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_368.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_368.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_368.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_370.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_370.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_370.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_370.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_370.list-item .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_370.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_370.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_370.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_370.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_370.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_370.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_370.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_372.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_372.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_372.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_372.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_372.list-item .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_372.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_372.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_372.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_372.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_372.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_372.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_372.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_374.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_374.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_374.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_374.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_374.list-item .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_374.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_374.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_374.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_374.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_374.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_374.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_374.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_376.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_376.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_376.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_376.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_376.list-item .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_376.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_376.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_376.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_376.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_376.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_376.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_376.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_378.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_378.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_378.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_378.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_378.list-item .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_378.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_378.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_378.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_378.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_378.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_378.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_378.hide-d {
    display: none; } }

/*  */


#stacks_out_382 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_382 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_382 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_382 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_382 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_382 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_382 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (full-card)";
	text-transform: capitalize;
}


 

#stacks_in_384-wrapper.card {
	background: transparent !important;
	overflow: hidden !important;
}

#stacks_in_384-wrapper .card-header {
	
	background-color: var(--bs-white);
	
	
}

#stacks_in_384-wrapper.custom-radius,
#stacks_in_384-wrapper .card-body.custom-radius {
	border-radius: 13px 13px 13px 13px;
}

#stacks_in_384-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_384-wrapper .card-body {
	
	background-color: var(--bs-white);
	
	
}



#stacks_in_384-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_384-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_384-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_384-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_384-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_384-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_384-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_384-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_384-wrapper .card-header h1,
#stacks_in_384-wrapper .card-header h2,
#stacks_in_384-wrapper .card-header h3,
#stacks_in_384-wrapper .card-header h4,
#stacks_in_384-wrapper .card-header h5,
#stacks_in_384-wrapper .card-header h6,
#stacks_in_384-wrapper .card-header p:last-of-type,
#stacks_in_384-wrapper .card-header small,
#stacks_in_384-wrapper .card-footer h1,
#stacks_in_384-wrapper .card-footer h2,
#stacks_in_384-wrapper .card-footer h3,
#stacks_in_384-wrapper .card-footer h4,
#stacks_in_384-wrapper .card-footer h5,
#stacks_in_384-wrapper .card-footer h6,
#stacks_in_384-wrapper .card-footer p:last-of-type,
#stacks_in_384-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_384-wrapper.card {
	
	
	border-color: rgba(65, 42, 22, 1.00) !important;
	
}

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

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


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


#stacks_in_384-wrapper > .card-body.custom-padding {
	padding: 0.90rem;
}

#stacks_in_384-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_384-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_384-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_384-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_384-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_384-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_384-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_384-wrapper img {
 	margin: 0 !important;
 }
 


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

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


#stacks_in_420-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_420-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_422-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(65, 42, 22, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

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

}



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






.stacks_in_422-header {
	font-size: 3.00rem;
}

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

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

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

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

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




/* Base Margins */
.stacks_in_620.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_620.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_620.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_620.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_620.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_620.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_620.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_620.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_620.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_620.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




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

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


#stacks_in_386-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_386-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_388.blu-svg{text-align:center}#stacks_in_388.blu-svg svg{width:75.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_388.blu-svg{text-align:center}#stacks_in_388.blu-svg svg{width:75.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_388.blu-svg{text-align:center}#stacks_in_388.blu-svg svg{width:86.00px}}@media screen and (min-width:1000px){#stacks_in_388.blu-svg{text-align:center}#stacks_in_388.blu-svg svg{width:96.00px}}  #stacks_in_388.blu-svg svg rectange,#stacks_in_388.blu-svg svg circle,#stacks_in_388.blu-svg svg ellipse,#stacks_in_388.blu-svg svg polygon,#stacks_in_388.blu-svg svg polyline,#stacks_in_388.blu-svg svg path{fill:rgba(51, 51, 51, 0.40)!important;-webkit-transition:fill 120ms 0ms ease,stroke 120ms 0ms ease;transition:fill 120ms 0ms ease,stroke 120ms 0ms ease}#stacks_in_388.blu-svg svg:hover rectange,#stacks_in_388.blu-svg svg:hover circle,#stacks_in_388.blu-svg svg:hover ellipse,#stacks_in_388.blu-svg svg:hover polygon,#stacks_in_388.blu-svg svg:hover polyline,#stacks_in_388.blu-svg svg:hover path{fill:rgba(51, 51, 51, 0.40)!important} #stacks_in_388.blu-svg{float:none}#stacks_in_388 a,#stacks_in_388 svg{cursor:auto}



#stacks_in_391-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_391-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_391-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_391-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_392-wrapper,
#stacks_in_392-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_392-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_392-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_392-wrapper {
	background-position: center center;
}


#stacks_in_392-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_392-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_392-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_392-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_392-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_392-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_392-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_392-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_392-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_392-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_392-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_392-wrapper.bkg-solid-color {
	background: rgba(65, 42, 22, 1.00);
}

#stacks_in_392-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_392-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_392-wrapper.custom-corners,
#stacks_in_392-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_392-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_392-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_392-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_392-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_392-wrapper {
	
	border-color: rgba(247, 247, 249, 1.00) !important;
	
	
	
	
}








	

	








#stacks_in_394-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_394-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_394-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_394-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_396-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(231, 231, 231, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_396-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_396-header {
	margin-bottom: 0;
}






.stacks_in_396-header {
	font-size: 1.90rem;
}

@media (min-width: 576px) {
	.stacks_in_396-header {
		font-size: 1.90rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_396-header {
		font-size: 1.20rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_396-header {
		font-size: 1.78rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_396-header {
		font-size: 2.15rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_396-header {
		font-size: 2.60rem;
	}
}



#stacks_in_399-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_399-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_399-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_399-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_400-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: ;
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_400-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_400-header {
	margin-bottom: 0;
}






.stacks_in_400-header {
	font-size: 3.00rem;
}

@media (min-width: 576px) {
	.stacks_in_400-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_400-header {
		font-size: 1.90rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_400-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_400-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_400-header {
		font-size: 3.00rem;
	}
}



#stacks_in_403-wrapper .badge {
	
	font-weight: 700;
	
}

#stacks_in_403-wrapper .badge.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_403-wrapper .badge {
	
	
	

	
	background: rgba(65, 42, 22, 1.00);
	background-image: linear-gradient(180deg, rgba(65, 42, 22, 1.00) 0%, rgba(65, 42, 22, 0.50) 100%);
	
	
	color: rgba(255, 255, 255, 1.00);
}


/* Base Margins */
#stacks_in_403-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_403-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_403-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_403-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_403-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_403-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_404-wrapper {
	
	font-weight: 400;
	
	
	
}

#stacks_in_404-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_404-wrapper {
	
	
	
	color: var(--bs-dark);
	
}



/* Base Margins */
#stacks_in_404-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_404-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_404-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_404-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_404-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_404-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}
#stacks_out_406 .bare {
	background: none !important;
	border: 2px solid #dfeafb !important;
}

#stacks_out_406 .selected {
	background: none !important;
	border: 2px solid #6928f2 !important;
}

#stacks_out_406 [class^="stacks-label-in"] {
	background: #a0bcd2 !important;
	color: #fff !important;
}

#stacks_out_406 .selected > [class^="stacks-label-out"] > [class^="stacks-label-in"] {
	background: linear-gradient(135deg, #8e26fd 0%, #6928f2 100%) !important;
	color: #fff !important;
}

#stacks_out_406 [class^="stacks-button"].info {
	background: #ffffff !important;
	color: #6928f2 !important;
}

#stacks_out_406 > .mez > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after,
#stacks_out_406 > .mez > div > div[class^="stacks-label-"]:not([class^="stacks-label-out"]):after {
	content: " (my-unique-id)";
	text-transform: capitalize;
}




#stacks_in_407-wrapper,
#stacks_in_407-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_407-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_407-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_407-wrapper {
	background-position: center center;
}


#stacks_in_407-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_407-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_407-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_407-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_407-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_407-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_407-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_407-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_407-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_407-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_407-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_407-wrapper.bkg-solid-color {
	background: rgba(65, 42, 22, 1.00);
}

#stacks_in_407-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_407-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_407-wrapper.custom-corners,
#stacks_in_407-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_407-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_407-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_407-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_407-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_407-wrapper {
	
	border-color: rgba(192, 132, 78, 1.00) !important;
	
	
	
	
}








	

	





/* Base Margins */
#stacks_in_407-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_407-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_407-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_407-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_407-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_407-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




#stacks_in_409-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_409-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_409-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_409-margins.padding-advanced {
	padding: 1.00rem 0.00rem 0.50rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_409-margins.padding-advanced {
		padding: 2.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_409-margins.padding-advanced {
		padding: 2.50rem 0.00rem 1.50rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



h2.stacks_in_411-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(231, 231, 231, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_411-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_411-header {
	margin-bottom: 0;
}






.stacks_in_411-header {
	font-size: 1.10rem;
}

@media (min-width: 576px) {
	.stacks_in_411-header {
		font-size: 1.10rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_411-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_411-header {
		font-size: 1.60rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_411-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_411-header {
		font-size: 2.00rem;
	}
}



h2.stacks_in_414-header {
	
	font-weight: 700;
	
	
	
	
	
	
	color: rgba(231, 231, 231, 1.00);
	
	
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_414-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_414-header {
	margin-bottom: 0;
}






.stacks_in_414-header {
	font-size: 1.10rem;
}

@media (min-width: 576px) {
	.stacks_in_414-header {
		font-size: 1.10rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_414-header {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_414-header {
		font-size: 1.60rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_414-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_414-header {
		font-size: 2.00rem;
	}
}



#stacks_in_416-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_416-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_416-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_416-margins.padding-advanced {
	padding: 0.00rem 0.50rem 0.50rem 0.50rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_416-margins.padding-advanced {
		padding: 0.00rem 0.50rem 1.00rem 0.50rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_416-margins.padding-advanced {
		padding: 0.00rem 0.50rem 2.00rem 0.50rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_417-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_417-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_626-wrapper {
	
	
	
}

#stacks_in_626-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_626-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_626-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_626-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_626-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_626-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_626-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_626-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_425-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_425-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_425-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_425-margins.padding-advanced {
	padding: 1.50rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_425-margins.padding-advanced {
		padding: 2.00rem 0.00rem 1.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_425-margins.padding-advanced {
		padding: 0.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_426-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_426-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_426-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_426-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_428-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h2.stacks_in_428-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h2.stacks_in_428-header {
	margin-bottom: 0;
}






.stacks_in_428-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_428-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_428-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_428-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_428-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_428-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_431 {
  /*! 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_431 html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */ }
  #listify_stacks_in_431 body {
    margin: 0; }
  #listify_stacks_in_431 article, #listify_stacks_in_431 aside, #listify_stacks_in_431 details, #listify_stacks_in_431 figcaption, #listify_stacks_in_431 figure, #listify_stacks_in_431 footer, #listify_stacks_in_431 header, #listify_stacks_in_431 hgroup, #listify_stacks_in_431 main, #listify_stacks_in_431 menu, #listify_stacks_in_431 nav, #listify_stacks_in_431 section, #listify_stacks_in_431 summary {
    display: block; }
  #listify_stacks_in_431 audio, #listify_stacks_in_431 canvas, #listify_stacks_in_431 progress, #listify_stacks_in_431 video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */ }
  #listify_stacks_in_431 audio:not([controls]) {
    display: none;
    height: 0; }
  #listify_stacks_in_431 [hidden], #listify_stacks_in_431 template {
    display: none; }
  #listify_stacks_in_431 a {
    background-color: transparent; }
    #listify_stacks_in_431 a:active, #listify_stacks_in_431 a:hover {
      outline: 0; }
  #listify_stacks_in_431 abbr[title] {
    border-bottom: 1px dotted; }
  #listify_stacks_in_431 b, #listify_stacks_in_431 strong {
    font-weight: bold; }
  #listify_stacks_in_431 dfn {
    font-style: italic; }
  #listify_stacks_in_431 h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  #listify_stacks_in_431 mark {
    background: #ff0;
    color: #000; }
  #listify_stacks_in_431 small {
    font-size: 80%; }
  #listify_stacks_in_431 sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  #listify_stacks_in_431 sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em; }
  #listify_stacks_in_431 sub {
    bottom: -0.25em; }
  #listify_stacks_in_431 img {
    border: 0; }
  #listify_stacks_in_431 svg:not(:root) {
    overflow: hidden; }
  #listify_stacks_in_431 figure {
    margin: 1em 40px; }
  #listify_stacks_in_431 hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0; }
  #listify_stacks_in_431 pre {
    overflow: auto; }
  #listify_stacks_in_431 code, #listify_stacks_in_431 kbd, #listify_stacks_in_431 pre, #listify_stacks_in_431 samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  #listify_stacks_in_431 button, #listify_stacks_in_431 input, #listify_stacks_in_431 optgroup, #listify_stacks_in_431 select, #listify_stacks_in_431 textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */ }
  #listify_stacks_in_431 button {
    overflow: visible;
    text-transform: none; }
  #listify_stacks_in_431 select {
    text-transform: none; }
  #listify_stacks_in_431 button, #listify_stacks_in_431 html input[type="button"], #listify_stacks_in_431 input[type="reset"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */ }
  #listify_stacks_in_431 button[disabled], #listify_stacks_in_431 html input[disabled] {
    cursor: default; }
  #listify_stacks_in_431 button::-moz-focus-inner {
    border: 0;
    padding: 0; }
  #listify_stacks_in_431 input {
    line-height: normal; }
    #listify_stacks_in_431 input::-moz-focus-inner {
      border: 0;
      padding: 0; }
    #listify_stacks_in_431 input[type="checkbox"], #listify_stacks_in_431 input[type="radio"] {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      /* 1 */
      padding: 0;
      /* 2 */ }
    #listify_stacks_in_431 input[type="number"]::-webkit-inner-spin-button, #listify_stacks_in_431 input[type="number"]::-webkit-outer-spin-button {
      height: auto; }
    #listify_stacks_in_431 input[type="search"] {
      -webkit-appearance: textfield;
      /* 1 */
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      /* 2 */ }
      #listify_stacks_in_431 input[type="search"]::-webkit-search-cancel-button, #listify_stacks_in_431 input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none; }
  #listify_stacks_in_431 fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  #listify_stacks_in_431 legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */ }
  #listify_stacks_in_431 textarea {
    overflow: auto; }
  #listify_stacks_in_431 optgroup {
    font-weight: bold; }
  #listify_stacks_in_431 table {
    border-collapse: collapse;
    border-spacing: 0; }
  #listify_stacks_in_431 td, #listify_stacks_in_431 th {
    padding: 0; }

@font-face {
  #listify_stacks_in_431 {
    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_431 [class^="w-icon-"], #listify_stacks_in_431 [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_431 .w-icon-slider-right:before {
    content: "\e600"; }
  #listify_stacks_in_431 .w-icon-slider-left:before {
    content: "\e601"; }
  #listify_stacks_in_431 .w-icon-nav-menu:before {
    content: "\e602"; }
  #listify_stacks_in_431 .w-icon-arrow-down:before, #listify_stacks_in_431 .w-icon-dropdown-toggle:before {
    content: "\e603"; }
  #listify_stacks_in_431 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  #listify_stacks_in_431 html {
    height: 100%; }
  #listify_stacks_in_431 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_431 img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block; }
  #listify_stacks_in_431 html.w-mod-touch * {
    background-attachment: scroll !important; }
  #listify_stacks_in_431 .w-block {
    display: block; }
  #listify_stacks_in_431 .w-inline-block {
    max-width: 100%;
    display: inline-block; }
  #listify_stacks_in_431 .w-clearfix:before {
    content: " ";
    display: table; }
  #listify_stacks_in_431 .w-clearfix:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_431 .w-preserve-3d {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  #listify_stacks_in_431 .w-hidden {
    display: none; }
  #listify_stacks_in_431 .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_431 input.w-button {
    -webkit-appearance: button; }
  #listify_stacks_in_431 html[data-w-dynpage] [data-w-cloak] {
    color: transparent !important; }
  #listify_stacks_in_431 .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_431 .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_431 .w-webflow-badge > img {
      display: inline-block !important;
      visibility: visible !important;
      opacity: 1 !important;
      vertical-align: middle !important; }
  #listify_stacks_in_431 h1, #listify_stacks_in_431 h2, #listify_stacks_in_431 h3, #listify_stacks_in_431 h4, #listify_stacks_in_431 h5, #listify_stacks_in_431 h6 {
    font-weight: bold;
    margin-bottom: 10px; }
  #listify_stacks_in_431 h1 {
    font-size: 38px;
    line-height: 44px;
    margin-top: 20px; }
  #listify_stacks_in_431 h2 {
    font-size: 32px;
    line-height: 36px;
    margin-top: 20px; }
  #listify_stacks_in_431 h3 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 20px; }
  #listify_stacks_in_431 h4 {
    font-size: 18px;
    line-height: 24px;
    margin-top: 10px; }
  #listify_stacks_in_431 h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px; }
  #listify_stacks_in_431 h6 {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px; }
  #listify_stacks_in_431 p {
    margin-top: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_431 a:focus {
    outline: 0; }
  #listify_stacks_in_431 blockquote {
    margin: 0 0 10px 0;
    padding: 10px 20px;
    border-left: 5px solid #E2E2E2;
    font-size: 18px;
    line-height: 22px; }
  #listify_stacks_in_431 figure {
    margin: 0;
    margin-bottom: 10px; }
  #listify_stacks_in_431 figcaption {
    margin-top: 5px;
    text-align: center; }
  #listify_stacks_in_431 ul, #listify_stacks_in_431 ol {
    margin-top: 0px;
    margin-bottom: 10px;
    padding-left: 40px; }
  #listify_stacks_in_431 .w-list-unstyled {
    padding-left: 0;
    list-style: none; }
  #listify_stacks_in_431 .w-embed:before {
    content: " ";
    display: table; }
  #listify_stacks_in_431 .w-embed:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_431 .w-video {
    width: 100%;
    position: relative;
    padding: 0; }
    #listify_stacks_in_431 .w-video iframe, #listify_stacks_in_431 .w-video object, #listify_stacks_in_431 .w-video embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #listify_stacks_in_431 fieldset {
    padding: 0;
    margin: 0;
    border: 0; }
  #listify_stacks_in_431 button, #listify_stacks_in_431 html input[type="button"], #listify_stacks_in_431 input[type="reset"] {
    border: 0;
    cursor: pointer;
    -webkit-appearance: button; }
  #listify_stacks_in_431 .w-form {
    margin: 0 0 15px; }
  #listify_stacks_in_431 .w-form-done {
    display: none;
    padding: 20px;
    text-align: center;
    background-color: #dddddd; }
  #listify_stacks_in_431 .w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede; }
  #listify_stacks_in_431 label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold; }
  #listify_stacks_in_431 .w-input, #listify_stacks_in_431 .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_431 .w-input:-moz-placeholder, #listify_stacks_in_431 .w-select:-moz-placeholder {
    color: #999; }
  #listify_stacks_in_431 .w-input::-moz-placeholder, #listify_stacks_in_431 .w-select::-moz-placeholder {
    color: #999;
    opacity: 1; }
  #listify_stacks_in_431 .w-input:-ms-input-placeholder, #listify_stacks_in_431 .w-select:-ms-input-placeholder, #listify_stacks_in_431 .w-input::-webkit-input-placeholder, #listify_stacks_in_431 .w-select::-webkit-input-placeholder {
    color: #999; }
  #listify_stacks_in_431 .w-input:focus, #listify_stacks_in_431 .w-select:focus {
    border-color: #3898EC;
    outline: 0; }
  #listify_stacks_in_431 .w-input[disabled], #listify_stacks_in_431 .w-select[disabled], #listify_stacks_in_431 .w-input[readonly], #listify_stacks_in_431 .w-select[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_431 fieldset[disabled] .w-input, #listify_stacks_in_431 fieldset[disabled] .w-select {
    cursor: not-allowed;
    background-color: #eeeeee; }
  #listify_stacks_in_431 textarea.w-input, #listify_stacks_in_431 textarea.w-select {
    height: auto; }
  #listify_stacks_in_431 .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_431 .w-select[multiple] {
      height: auto; }
  #listify_stacks_in_431 .w-form-label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0px; }
  #listify_stacks_in_431 .w-checkbox, #listify_stacks_in_431 .w-radio {
    display: block;
    margin-bottom: 5px;
    padding-left: 20px; }
  #listify_stacks_in_431 .w-checkbox:before, #listify_stacks_in_431 .w-radio:before, #listify_stacks_in_431 .w-checkbox:after, #listify_stacks_in_431 .w-radio:after {
    content: " ";
    display: table; }
  #listify_stacks_in_431 .w-checkbox:after, #listify_stacks_in_431 .w-radio:after {
    clear: both; }
  #listify_stacks_in_431 .w-checkbox-input {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    float: left;
    margin-left: -20px; }
  #listify_stacks_in_431 .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_431 .w-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 940px; }
    #listify_stacks_in_431 .w-container:before {
      content: " ";
      display: table; }
    #listify_stacks_in_431 .w-container:after {
      content: " ";
      display: table;
      clear: both; }
    #listify_stacks_in_431 .w-container .w-row {
      margin-left: -10px;
      margin-right: -10px; }
  #listify_stacks_in_431 .w-row:before {
    content: " ";
    display: table; }
  #listify_stacks_in_431 .w-row:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_431 .w-row .w-row {
    margin-left: 0;
    margin-right: 0; }
  #listify_stacks_in_431 .w-col {
    position: relative;
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px; }
    #listify_stacks_in_431 .w-col .w-col {
      padding-left: 0;
      padding-right: 0; }
  #listify_stacks_in_431 .w-col-1 {
    width: 8.33333333%; }
  #listify_stacks_in_431 .w-col-2 {
    width: 16.66666667%; }
  #listify_stacks_in_431 .w-col-3 {
    width: 25%; }
  #listify_stacks_in_431 .w-col-4 {
    width: 33.33333333%; }
  #listify_stacks_in_431 .w-col-5 {
    width: 41.66666667%; }
  #listify_stacks_in_431 .w-col-6 {
    width: 50%; }
  #listify_stacks_in_431 .w-col-7 {
    width: 58.33333333%; }
  #listify_stacks_in_431 .w-col-8 {
    width: 66.66666667%; }
  #listify_stacks_in_431 .w-col-9 {
    width: 75%; }
  #listify_stacks_in_431 .w-col-10 {
    width: 83.33333333%; }
  #listify_stacks_in_431 .w-col-11 {
    width: 91.66666667%; }
  #listify_stacks_in_431 .w-col-12 {
    width: 100%; }
  #listify_stacks_in_431 .w-hidden-main {
    display: none !important; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_431 .w-container {
      max-width: 728px; }
    #listify_stacks_in_431 .w-hidden-main {
      display: inherit !important; }
    #listify_stacks_in_431 .w-hidden-medium {
      display: none !important; }
    #listify_stacks_in_431 .w-col-medium-1 {
      width: 8.33333333%; }
    #listify_stacks_in_431 .w-col-medium-2 {
      width: 16.66666667%; }
    #listify_stacks_in_431 .w-col-medium-3 {
      width: 25%; }
    #listify_stacks_in_431 .w-col-medium-4 {
      width: 33.33333333%; }
    #listify_stacks_in_431 .w-col-medium-5 {
      width: 41.66666667%; }
    #listify_stacks_in_431 .w-col-medium-6 {
      width: 50%; }
    #listify_stacks_in_431 .w-col-medium-7 {
      width: 58.33333333%; }
    #listify_stacks_in_431 .w-col-medium-8 {
      width: 66.66666667%; }
    #listify_stacks_in_431 .w-col-medium-9 {
      width: 75%; }
    #listify_stacks_in_431 .w-col-medium-10 {
      width: 83.33333333%; }
    #listify_stacks_in_431 .w-col-medium-11 {
      width: 91.66666667%; }
    #listify_stacks_in_431 .w-col-medium-12 {
      width: 100%; }
    #listify_stacks_in_431 .w-col-stack {
      width: 100%;
      left: auto;
      right: auto; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_431 .w-hidden-main, #listify_stacks_in_431 .w-hidden-medium {
      display: inherit !important; }
    #listify_stacks_in_431 .w-hidden-small {
      display: none !important; }
    #listify_stacks_in_431 .w-row, #listify_stacks_in_431 .w-container .w-row {
      margin-left: 0;
      margin-right: 0; }
    #listify_stacks_in_431 .w-col {
      width: 100%;
      left: auto;
      right: auto; }
    #listify_stacks_in_431 .w-col-small-1 {
      width: 8.33333333%; }
    #listify_stacks_in_431 .w-col-small-2 {
      width: 16.66666667%; }
    #listify_stacks_in_431 .w-col-small-3 {
      width: 25%; }
    #listify_stacks_in_431 .w-col-small-4 {
      width: 33.33333333%; }
    #listify_stacks_in_431 .w-col-small-5 {
      width: 41.66666667%; }
    #listify_stacks_in_431 .w-col-small-6 {
      width: 50%; }
    #listify_stacks_in_431 .w-col-small-7 {
      width: 58.33333333%; }
    #listify_stacks_in_431 .w-col-small-8 {
      width: 66.66666667%; }
    #listify_stacks_in_431 .w-col-small-9 {
      width: 75%; }
    #listify_stacks_in_431 .w-col-small-10 {
      width: 83.33333333%; }
    #listify_stacks_in_431 .w-col-small-11 {
      width: 91.66666667%; }
    #listify_stacks_in_431 .w-col-small-12 {
      width: 100%; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_431 .w-container {
      max-width: none; }
    #listify_stacks_in_431 .w-hidden-main, #listify_stacks_in_431 .w-hidden-medium, #listify_stacks_in_431 .w-hidden-small {
      display: inherit !important; }
    #listify_stacks_in_431 .w-hidden-tiny {
      display: none !important; }
    #listify_stacks_in_431 .w-col {
      width: 100%; }
    #listify_stacks_in_431 .w-col-tiny-1 {
      width: 8.33333333%; }
    #listify_stacks_in_431 .w-col-tiny-2 {
      width: 16.66666667%; }
    #listify_stacks_in_431 .w-col-tiny-3 {
      width: 25%; }
    #listify_stacks_in_431 .w-col-tiny-4 {
      width: 33.33333333%; }
    #listify_stacks_in_431 .w-col-tiny-5 {
      width: 41.66666667%; }
    #listify_stacks_in_431 .w-col-tiny-6 {
      width: 50%; }
    #listify_stacks_in_431 .w-col-tiny-7 {
      width: 58.33333333%; }
    #listify_stacks_in_431 .w-col-tiny-8 {
      width: 66.66666667%; }
    #listify_stacks_in_431 .w-col-tiny-9 {
      width: 75%; }
    #listify_stacks_in_431 .w-col-tiny-10 {
      width: 83.33333333%; }
    #listify_stacks_in_431 .w-col-tiny-11 {
      width: 91.66666667%; }
    #listify_stacks_in_431 .w-col-tiny-12 {
      width: 100%; } }
  #listify_stacks_in_431 .w-widget {
    position: relative; }
  #listify_stacks_in_431 .w-widget-map {
    width: 100%;
    height: 400px; }
    #listify_stacks_in_431 .w-widget-map label {
      width: auto;
      display: inline; }
    #listify_stacks_in_431 .w-widget-map img {
      max-width: inherit; }
    #listify_stacks_in_431 .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_431 .w-widget-map .gm-style-iw + div {
        display: none; }
  #listify_stacks_in_431 .w-widget-twitter {
    overflow: hidden; }
  #listify_stacks_in_431 .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_431 .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_431 .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_431 .w-widget-twitter-count-shim .w-widget-twitter-count-clear {
      position: relative;
      display: block; }
    #listify_stacks_in_431 .w-widget-twitter-count-shim.w--large {
      width: 36px;
      height: 28px;
      margin-left: 7px; }
      #listify_stacks_in_431 .w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 18px; }
    #listify_stacks_in_431 .w-widget-twitter-count-shim:not(.w--vertical) {
      margin-left: 5px;
      margin-right: 8px; }
      #listify_stacks_in_431 .w-widget-twitter-count-shim:not(.w--vertical).w--large {
        margin-left: 6px; }
      #listify_stacks_in_431 .w-widget-twitter-count-shim:not(.w--vertical):before, #listify_stacks_in_431 .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_431 .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_431 .w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
        border-width: 5px;
        margin-left: -10px;
        margin-top: -5px; }
      #listify_stacks_in_431 .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_431 .w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
        border-width: 5px;
        margin-left: -9px;
        margin-top: -5px; }
    #listify_stacks_in_431 .w-widget-twitter-count-shim.w--vertical {
      width: 61px;
      height: 33px;
      margin-bottom: 8px; }
      #listify_stacks_in_431 .w-widget-twitter-count-shim.w--vertical:before, #listify_stacks_in_431 .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_431 .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_431 .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_431 .w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
        font-size: 18px;
        line-height: 22px; }
      #listify_stacks_in_431 .w-widget-twitter-count-shim.w--vertical.w--large {
        width: 76px; }
  #listify_stacks_in_431 .w-widget-gplus {
    overflow: hidden; }
  #listify_stacks_in_431 .w-background-video {
    position: relative;
    overflow: hidden;
    height: 500px;
    color: white; }
    #listify_stacks_in_431 .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_431 .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_431 .w-slider-mask {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100%;
    white-space: nowrap; }
  #listify_stacks_in_431 .w-slide {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    white-space: normal;
    text-align: left; }
  #listify_stacks_in_431 .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_431 .w-slider-nav.w-round > div {
      border-radius: 100%; }
    #listify_stacks_in_431 .w-slider-nav.w-num > div {
      width: auto;
      height: auto;
      padding: 0.2em 0.5em;
      font-size: inherit;
      line-height: inherit; }
    #listify_stacks_in_431 .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_431 .w-slider-nav-invert {
    color: #fff; }
    #listify_stacks_in_431 .w-slider-nav-invert > div {
      background-color: rgba(34, 34, 34, 0.4); }
      #listify_stacks_in_431 .w-slider-nav-invert > div.w-active {
        background-color: #222; }
  #listify_stacks_in_431 .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_431 .w-slider-dot.w-active {
      background-color: #fff; }
  #listify_stacks_in_431 .w-slider-arrow-left, #listify_stacks_in_431 .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_431 .w-slider-arrow-left [class^="w-icon-"], #listify_stacks_in_431 .w-slider-arrow-right [class^="w-icon-"], #listify_stacks_in_431 .w-slider-arrow-left [class*=" w-icon-"], #listify_stacks_in_431 .w-slider-arrow-right [class*=" w-icon-"] {
    position: absolute; }
  #listify_stacks_in_431 .w-slider-arrow-left {
    z-index: 3;
    right: auto; }
  #listify_stacks_in_431 .w-slider-arrow-right {
    z-index: 4;
    left: auto; }
  #listify_stacks_in_431 .w-icon-slider-left, #listify_stacks_in_431 .w-icon-slider-right {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_431 .w-dropdown {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    z-index: 900; }
  #listify_stacks_in_431 .w-dropdown-btn, #listify_stacks_in_431 .w-dropdown-toggle, #listify_stacks_in_431 .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_431 .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_431 .w-dropdown-toggle:focus {
      outline: 0; }
  #listify_stacks_in_431 .w-icon-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-right: 20px;
    width: 1em;
    height: 1em; }
  #listify_stacks_in_431 .w-dropdown-list {
    position: absolute;
    background: #dddddd;
    display: none;
    min-width: 100%; }
    #listify_stacks_in_431 .w-dropdown-list.w--open {
      display: block; }
  #listify_stacks_in_431 .w-dropdown-link {
    padding: 10px 20px;
    display: block;
    color: #222222; }
    #listify_stacks_in_431 .w-dropdown-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_431 .w-nav[data-collapse="all"] .w-dropdown, #listify_stacks_in_431 .w-nav[data-collapse="all"] .w-dropdown-toggle {
    display: block; }
  #listify_stacks_in_431 .w-nav[data-collapse="all"] .w-dropdown-list {
    position: static; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_431 .w-nav[data-collapse="medium"] .w-dropdown, #listify_stacks_in_431 .w-nav[data-collapse="medium"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_431 .w-nav[data-collapse="medium"] .w-dropdown-list {
      position: static; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_431 .w-nav[data-collapse="small"] .w-dropdown, #listify_stacks_in_431 .w-nav[data-collapse="small"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_431 .w-nav[data-collapse="small"] .w-dropdown-list {
      position: static; }
    #listify_stacks_in_431 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_431 .w-nav[data-collapse="tiny"] .w-dropdown, #listify_stacks_in_431 .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
      display: block; }
    #listify_stacks_in_431 .w-nav[data-collapse="tiny"] .w-dropdown-list {
      position: static; } }
  #listify_stacks_in_431 .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_431 .w-lightbox-container {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
  #listify_stacks_in_431 .w-lightbox-content {
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #listify_stacks_in_431 .w-lightbox-view {
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0; }
    #listify_stacks_in_431 .w-lightbox-view:before {
      content: "";
      height: 100vh; }
  #listify_stacks_in_431 .w-lightbox-group {
    height: 86vh; }
    #listify_stacks_in_431 .w-lightbox-group .w-lightbox-view {
      height: 86vh; }
      #listify_stacks_in_431 .w-lightbox-group .w-lightbox-view:before {
        height: 86vh; }
  #listify_stacks_in_431 .w-lightbox-frame, #listify_stacks_in_431 .w-lightbox-view:before {
    display: inline-block;
    vertical-align: middle; }
  #listify_stacks_in_431 .w-lightbox-figure {
    position: relative;
    margin: 0;
    /* 1 */ }
  #listify_stacks_in_431 .w-lightbox-group .w-lightbox-figure {
    cursor: pointer; }
  #listify_stacks_in_431 .w-lightbox-img {
    width: auto;
    height: auto;
    max-width: none; }
  #listify_stacks_in_431 .w-lightbox-image {
    display: block;
    float: none;
    /* 1 */
    max-width: 100vw;
    max-height: 100vh; }
  #listify_stacks_in_431 .w-lightbox-group .w-lightbox-image {
    max-height: 86vh; }
  #listify_stacks_in_431 .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_431 .w-lightbox-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  #listify_stacks_in_431 .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_431 .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_431 .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_431 .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_431 .w-lightbox-strip {
    padding: 0 1vh;
    line-height: 0;
    /* 1 */
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden; }
  #listify_stacks_in_431 .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_431 .w-lightbox-active {
    opacity: .3; }
  #listify_stacks_in_431 .w-lightbox-thumbnail {
    position: relative;
    height: 10vh;
    background: #222;
    overflow: hidden; }
  #listify_stacks_in_431 .w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0; }
  #listify_stacks_in_431 .w-lightbox-thumbnail .w-lightbox-tall {
    top: 50%;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  #listify_stacks_in_431 .w-lightbox-thumbnail .w-lightbox-wide {
    left: 50%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  #listify_stacks_in_431 .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_431 .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_431 .w-lightbox-hide {
    display: none; }
  #listify_stacks_in_431 .w-lightbox-noscroll {
    overflow: hidden; }
  @media (min-width: 768px) {
    #listify_stacks_in_431 {
      /* .w-lightbox-content */ }
      #listify_stacks_in_431 .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh; }
      #listify_stacks_in_431 .w-lightbox-view {
        height: 96vh; }
        #listify_stacks_in_431 .w-lightbox-view:before {
          height: 96vh; }
      #listify_stacks_in_431 .w-lightbox-group {
        height: 84vh; }
        #listify_stacks_in_431 .w-lightbox-group .w-lightbox-view {
          height: 84vh; }
          #listify_stacks_in_431 .w-lightbox-group .w-lightbox-view:before {
            height: 84vh; }
      #listify_stacks_in_431 .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh; }
      #listify_stacks_in_431 .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh; }
      #listify_stacks_in_431 .w-lightbox-left, #listify_stacks_in_431 .w-lightbox-right {
        display: block;
        opacity: .5; }
      #listify_stacks_in_431 .w-lightbox-close {
        opacity: .8; }
      #listify_stacks_in_431 .w-lightbox-control:hover {
        opacity: 1; } }
  #listify_stacks_in_431 .w-lightbox-inactive {
    opacity: 0; }
    #listify_stacks_in_431 .w-lightbox-inactive:hover {
      opacity: 0; }
  #listify_stacks_in_431 .w-richtext:before {
    content: " ";
    display: table; }
  #listify_stacks_in_431 .w-richtext:after {
    content: " ";
    display: table;
    clear: both; }
  #listify_stacks_in_431 .w-richtext ol, #listify_stacks_in_431 .w-richtext ul {
    overflow: hidden; }
  #listify_stacks_in_431 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:before, #listify_stacks_in_431 .w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:before, #listify_stacks_in_431 .w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div, #listify_stacks_in_431 .w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7; }
  #listify_stacks_in_431 .w-richtext figure {
    position: relative;
    max-width: 60%; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-figure-type-video > div:before, #listify_stacks_in_431 .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_431 .w-richtext figure > div:before {
      cursor: default !important; }
    #listify_stacks_in_431 .w-richtext figure img {
      cursor: default !important;
      width: 100%; }
    #listify_stacks_in_431 .w-richtext figure figcaption.w-richtext-figcaption-placeholder {
      opacity: 0.6; }
    #listify_stacks_in_431 .w-richtext figure div {
      /* fix incorrectly sized selection border in the data manager */
      font-size: 0px;
      color: transparent; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-figure-type-image, #listify_stacks_in_431 .w-richtext figure[data-rt-type="image"] {
      display: table; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-figure-type-image > div, #listify_stacks_in_431 .w-richtext figure[data-rt-type="image"] > div {
      display: inline-block; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-figure-type-image > figcaption, #listify_stacks_in_431 .w-richtext figure[data-rt-type="image"] > figcaption {
      display: table-caption;
      caption-side: bottom; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-figure-type-video, #listify_stacks_in_431 .w-richtext figure[data-rt-type="video"] {
      width: 60%;
      height: 0; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-figure-type-video iframe, #listify_stacks_in_431 .w-richtext figure[data-rt-type="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-figure-type-video > div, #listify_stacks_in_431 .w-richtext figure[data-rt-type="video"] > div {
      width: 100%; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-align-center {
      margin-right: auto;
      margin-left: auto;
      clear: both; }
      #listify_stacks_in_431 .w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div, #listify_stacks_in_431 .w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
        max-width: 100%; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-align-normal {
      clear: both; }
    #listify_stacks_in_431 .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_431 .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_431 .w-richtext figure.w-richtext-align-fullwidth > figcaption {
        display: block; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-align-floatleft {
      float: left;
      margin-right: 15px;
      clear: none; }
    #listify_stacks_in_431 .w-richtext figure.w-richtext-align-floatright {
      float: right;
      margin-left: 15px;
      clear: none; }
  #listify_stacks_in_431 .w-nav {
    position: relative;
    background: #dddddd;
    z-index: 1000; }
    #listify_stacks_in_431 .w-nav:before {
      content: " ";
      display: table; }
    #listify_stacks_in_431 .w-nav:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_431 .w-nav-brand {
    position: relative;
    float: left;
    text-decoration: none;
    color: #333333; }
  #listify_stacks_in_431 .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_431 .w-nav-link.w--current {
      color: #0082f3; }
  #listify_stacks_in_431 .w-nav-menu {
    position: relative;
    float: right; }
  #listify_stacks_in_431 .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_431 .w--nav-link-open {
    display: block;
    position: relative; }
  #listify_stacks_in_431 .w-nav-overlay {
    position: absolute;
    overflow: hidden;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%; }
    #listify_stacks_in_431 .w-nav-overlay .w--nav-menu-open {
      top: 0; }
  #listify_stacks_in_431 .w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_431 .w-nav[data-animation="over-left"] .w--nav-menu-open {
    right: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_431 .w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_431 .w-nav[data-animation="over-right"] .w--nav-menu-open {
    left: auto;
    z-index: 1;
    top: 0; }
  #listify_stacks_in_431 .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_431 .w-nav-button.w--open {
      background-color: #C8C8C8;
      color: white; }
  #listify_stacks_in_431 .w-nav[data-collapse="all"] .w-nav-menu {
    display: none; }
  #listify_stacks_in_431 .w-nav[data-collapse="all"] .w-nav-button {
    display: block; }
  @media screen and (max-width: 991px) {
    #listify_stacks_in_431 .w-nav[data-collapse="medium"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_431 .w-nav[data-collapse="medium"] .w-nav-button {
      display: block; } }
  @media screen and (max-width: 767px) {
    #listify_stacks_in_431 .w-nav[data-collapse="small"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_431 .w-nav[data-collapse="small"] .w-nav-button {
      display: block; }
    #listify_stacks_in_431 .w-nav-brand {
      padding-left: 10px; } }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_431 .w-nav[data-collapse="tiny"] .w-nav-menu {
      display: none; }
    #listify_stacks_in_431 .w-nav[data-collapse="tiny"] .w-nav-button {
      display: block; } }
  #listify_stacks_in_431 .w-tabs {
    position: relative; }
    #listify_stacks_in_431 .w-tabs:before {
      content: " ";
      display: table; }
    #listify_stacks_in_431 .w-tabs:after {
      content: " ";
      display: table;
      clear: both; }
  #listify_stacks_in_431 .w-tab-menu {
    position: relative; }
  #listify_stacks_in_431 .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_431 .w-tab-link.w--current {
      background-color: #C8C8C8; }
  #listify_stacks_in_431 .w-tab-content {
    position: relative;
    display: block;
    overflow: hidden; }
  #listify_stacks_in_431 .w-tab-pane {
    position: relative;
    display: none; }
  #listify_stacks_in_431 .w--tab-active {
    display: block; }
  @media screen and (max-width: 479px) {
    #listify_stacks_in_431 .w-tab-link {
      display: block; } }
  #listify_stacks_in_431 .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_431 .w-dyn-empty {
    padding: 10px;
    background-color: #dddddd; }
  #listify_stacks_in_431 .w-dyn-bind-empty, #listify_stacks_in_431 .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_431 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*  */
  width: 100%;
  /*  */
  /*  */ }
  #listify_stacks_in_431 .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_431 .list-item {
    list-style-type: none;
    margin-bottom: 5px; }
    #listify_stacks_in_431 .list-item ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_431 .list-item ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_431 .list-item ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_431 .list-item ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_431 .list-item ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_431 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_431 .list-item ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
      /*  */
      padding-left: 10px;
      padding-right: 0;
      /*  */
      /*  */ }
    #listify_stacks_in_431 .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_431 .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_431 .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_431 .list-item a {
      cursor: pointer;
      text-decoration: none; }
  #listify_stacks_in_431 .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_431 .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_431 .list-item-icon.hide-icon {
      display: none; }
  #listify_stacks_in_431 .list-item-icon i {
    color: rgba(0, 0, 0, 1.00);
    font-size: 18px;
    vertical-align: middle;
    /*  */ }
  #listify_stacks_in_431 .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_431 .list-item-text.hide-text {
      display: none; }

/*  */
/*  */
#listify_stacks_in_431 .list-item-inner {
  margin: 0px 0px 0px 0px; }

@media only screen and (max-width: 440px) {
  #listify_stacks_in_431.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listify_stacks_in_431.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listify_stacks_in_431.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_432.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_432.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_432.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_432.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_432.list-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_432.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_432.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_432.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_432.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_432.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_432.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_432.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_434.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_434.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_434.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_434.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_434.list-item .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_434.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_434.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_434.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_434.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_434.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_434.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_434.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_436.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_436.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_436.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_436.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_436.list-item .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_436.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_436.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_436.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_436.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_436.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_436.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_436.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_438.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_438.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_438.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_438.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_438.list-item .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_438.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_438.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_438.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_438.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_438.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_438.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_438.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_440.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_440.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_440.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_440.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_440.list-item .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_440.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_440.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_440.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_440.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_440.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_440.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_440.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_442.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_442.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_442.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_442.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_442.list-item .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_442.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_442.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_442.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_442.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_442.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_442.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_442.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_444.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_444.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_444.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_444.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_444.list-item .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_444.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_444.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_444.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_444.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_444.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_444.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_444.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_446.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_446.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_446.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_446.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_446.list-item .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_446.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_446.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_446.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_446.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_446.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_446.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_446.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_448.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_448.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_448.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_448.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_448.list-item .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_448.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_448.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_448.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_448.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_448.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_448.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_448.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_450.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_450.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_450.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_450.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_450.list-item .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_450.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_450.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_450.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_450.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_450.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_450.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_450.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_452.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_452.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_452.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_452.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_452.list-item .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_452.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_452.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_452.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_452.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_452.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_452.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_452.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_454.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_454.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_454.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_454.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_454.list-item .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_454.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_454.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_454.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_454.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_454.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_454.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_454.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_456.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_456.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_456.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_456.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_456.list-item .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_456.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_456.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_456.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_456.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_456.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_456.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_456.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_458.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_458.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_458.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_458.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_458.list-item .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_458.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_458.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_458.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_458.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_458.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_458.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_458.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_460.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_460.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_460.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_460.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_460.list-item .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_460.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_460.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_460.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_460.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_460.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_460.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_460.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_462.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_462.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_462.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_462.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_462.list-item .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_462.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_462.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_462.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_462.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_462.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_462.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_462.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_464.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_464.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_464.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_464.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_464.list-item .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_464.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_464.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_464.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_464.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_464.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_464.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_464.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_466.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_466.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_466.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_466.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_466.list-item .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_466.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_466.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_466.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_466.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_466.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_466.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_466.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_468.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_468.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_468.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_468.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_468.list-item .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_468.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_468.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_468.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_468.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_468.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_468.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_468.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_470.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_470.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_470.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_470.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_470.list-item .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_470.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_470.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_470.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_470.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_470.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_470.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_470.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_472.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_472.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_472.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_472.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_472.list-item .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_472.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_472.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_472.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_472.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_472.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_472.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_472.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_474.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_474.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_474.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_474.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_474.list-item .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_474.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_474.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_474.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_474.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_474.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_474.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_474.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_476.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_476.list-item {
  margin-bottom: 5px; }

#listifyItem_stacks_in_476.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_476.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_476.list-item .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_476.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_476.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_476.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_476.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_476.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_476.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_476.hide-d {
    display: none; } }

/*  */
#listifyItem_stacks_in_478.list-item a.no-link {
  /*  */
  pointer-events: none !important;
  cursor: default;
  /*  */ }

/*  */
#listifyItem_stacks_in_478.list-item {
  margin-bottom: 0px; }

#listifyItem_stacks_in_478.list-item > a {
  list-style-type: none; }

#listifyItem_stacks_in_478.list-item ul {
  margin: 0;
  padding: 0; }

#listifyItem_stacks_in_478.list-item .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_478.list-item .list-item-inner .list-item-icon {
    flex: 0 auto;
    -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_478.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_478.list-item .list-item-inner .list-item-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    word-wrap: break-word;
    -ms-grid-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_478.list-item .list-item-inner .list-item-stacks {
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

/*  */
/*  */
/*  */
@media only screen and (max-width: 440px) {
  #listifyItem_stacks_in_478.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #listifyItem_stacks_in_478.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #listifyItem_stacks_in_478.hide-d {
    display: none; } }

/*  */



#stacks_in_679-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_679-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_679-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_679-margins.padding-advanced {
	padding: 5.00rem 0.00rem 5.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_679-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_681-wrapper {
	
	max-width: 1200px;
	
}

#stacks_in_681-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_681-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_681-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_681-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_681-wrapper.fdy-container {
	max-width: 960px;
  }
}











#stacks_in_1270-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1270-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1270-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_1270-margins.padding-advanced {
	padding: 0.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1270-margins.padding-advanced {
		padding: 0.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



h4.stacks_in_1214-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h4.stacks_in_1214-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_1214-header {
	margin-bottom: 0;
}






.stacks_in_1214-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_1214-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1214-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1214-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1214-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1214-header {
		font-size: 2.00rem;
	}
}



h2.stacks_in_1398-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-success);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 2px rgba(13, 75, 161, 1.00);
	
	
	
}

h2.stacks_in_1398-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1398-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1398-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1398-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1398-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1398-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1398-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1398-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_1398-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1398-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1398-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1398-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1398-header {
		font-size: 2.00rem;
	}
}






@media (max-width: 575px) {
	
	#stacks_in_683-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_1394-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1394-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1394-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_1394-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1394-margins.padding-advanced {
		padding: 0.00rem 1.00rem 0.00rem 1.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}






h3.stacks_in_1402-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1402-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1402-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1402-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1402-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1402-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1402-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1402-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1402-header {
	font-size: 1.35rem;
}

@media (min-width: 576px) {
	.stacks_in_1402-header {
		font-size: 1.35rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1402-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1402-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1402-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1402-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1405-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}




/* Base Margins */
#stacks_in_1405-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1405-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1405-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1405-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1405-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1405-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_1405-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_1438-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1438-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1438-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_1438-margins.padding-advanced {
	padding: 0.00rem 1.00rem 0.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1438-margins.padding-advanced {
		padding: 0.00rem 1.00rem 0.00rem 1.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1440-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1440-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1440-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_1440-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) {
	
}






h2.stacks_in_1444-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h2.stacks_in_1444-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1444-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1444-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1444-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1444-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1444-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1444-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1444-header {
	font-size: 1.35rem;
}

@media (min-width: 576px) {
	.stacks_in_1444-header {
		font-size: 1.35rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1444-header {
		font-size: 2.00rem;
	}
}

@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_1447-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1447-list {
	
	
	
}

.stacks_in_1447-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1447-list a,
.stacks_in_1447-list a:visited,
.stacks_in_1447-list a:hover,
.stacks_in_1447-list a:active {
	text-decoration: none;
}

.stacks_in_1447-list a,
.stacks_in_1447-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1447-list a:hover,
.stacks_in_1447-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1447-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1447-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1447-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1447-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1447-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1447-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1447-list .list-inline-item:not(:last-child) {

}

.stacks_in_1447-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1447-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1448-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1448-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 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(148, 104, 247, 1.00) !important;
}

.stacks_in_1451-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1451-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




#stacks_in_1472-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1472-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1472-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_1472-margins.padding-advanced {
	padding: 0.00rem 1.00rem 1.00rem 1.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1472-margins.padding-advanced {
		padding: 0.00rem 1.00rem 0.00rem 1.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1486-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1486-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1486-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_1486-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_1489-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h2.stacks_in_1489-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1489-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1489-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1489-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1489-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1489-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1489-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1489-header {
	font-size: 1.35rem;
}

@media (min-width: 576px) {
	.stacks_in_1489-header {
		font-size: 1.35rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1489-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1489-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1489-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1489-header {
		font-size: 2.00rem;
	}
}


.stacks_in_1492-list {
	list-style: decimal;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1492-list {
	
	
	
}

.stacks_in_1492-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1492-list a,
.stacks_in_1492-list a:visited,
.stacks_in_1492-list a:hover,
.stacks_in_1492-list a:active {
	text-decoration: none;
}

.stacks_in_1492-list a,
.stacks_in_1492-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1492-list a:hover,
.stacks_in_1492-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1492-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1492-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1492-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1492-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1492-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1492-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1492-list .list-inline-item:not(:last-child) {

}

.stacks_in_1492-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1492-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1493-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1493-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1495-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1495-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1496-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1496-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




#stacks_in_694-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_694-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_694-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_694-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) {
	
}






h2.stacks_in_1246-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h2.stacks_in_1246-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1246-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1246-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1246-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1246-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1246-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1246-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1246-header {
	font-size: 1.35rem;
}

@media (min-width: 576px) {
	.stacks_in_1246-header {
		font-size: 1.35rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1246-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1246-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1246-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1246-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1243-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}









	#stacks_in_1243-wrapper p:last-of-type {
		margin-bottom: 0;
	}




#stacks_in_1697-wrapper,
#stacks_in_1697-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1697-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1697-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1697-wrapper {
	background-position: center center;
}


#stacks_in_1697-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1697-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1697-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1697-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1697-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1697-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1697-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1697-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1697-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1697-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1697-wrapper.bkg-preset {
	background: var(--bs-info);
}

#stacks_in_1697-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_1697-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_1697-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_1697-wrapper.custom-corners,
#stacks_in_1697-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1697-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1697-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1697-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_1697-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_1697-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1696-wrapper {
	
}

#stacks_in_1696-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_1696-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_1696-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_1696-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_1696-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_1699-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1699-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1699-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_1699-margins.padding-advanced {
	padding: 0.00rem 0.00rem 4.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1699-margins.padding-advanced {
		padding: 0.00rem 0.00rem 6.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1701-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1701-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1701-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_1701-margins.padding-advanced {
	padding: 4.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_1705-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 5px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1705-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1705-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1705-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1705-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1705-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1705-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1705-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1705-header {
	font-size: 2.35rem;
}

@media (min-width: 576px) {
	.stacks_in_1705-header {
		font-size: 2.35rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1705-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1705-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1705-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1705-header {
		font-size: 2.00rem;
	}
}






h3.stacks_in_1709-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1709-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1709-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1709-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1709-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1709-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1709-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1709-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1709-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_1709-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1709-header {
		font-size: 1.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1709-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1709-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1709-header {
		font-size: 2.00rem;
	}
}


.stacks_in_1712-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1712-list {
	
	
	
}

.stacks_in_1712-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1712-list a,
.stacks_in_1712-list a:visited,
.stacks_in_1712-list a:hover,
.stacks_in_1712-list a:active {
	text-decoration: none;
}

.stacks_in_1712-list a,
.stacks_in_1712-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1712-list a:hover,
.stacks_in_1712-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1712-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1712-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1712-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1712-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1712-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1712-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1712-list .list-inline-item:not(:last-child) {

}

.stacks_in_1712-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1712-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1713-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1713-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1715-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1715-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1716-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1716-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h3.stacks_in_1718-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1718-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1718-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1718-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1718-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1718-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1718-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1718-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1718-header {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	.stacks_in_1718-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1718-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1718-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1718-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1718-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1721-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}




/* Base Margins */
#stacks_in_1721-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1721-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1721-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1721-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1721-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1721-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_1721-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_1820-list {
	list-style: disc;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1820-list {
	
	
	
}

.stacks_in_1820-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1820-list a,
.stacks_in_1820-list a:visited,
.stacks_in_1820-list a:hover,
.stacks_in_1820-list a:active {
	text-decoration: none;
}

.stacks_in_1820-list a,
.stacks_in_1820-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1820-list a:hover,
.stacks_in_1820-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1820-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1820-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1820-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1820-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1820-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1820-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1820-list .list-inline-item:not(:last-child) {

}

.stacks_in_1820-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1820-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1821-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1821-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1830-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1830-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1723-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1723-list {
	
	
	
}

.stacks_in_1723-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1723-list a,
.stacks_in_1723-list a:visited,
.stacks_in_1723-list a:hover,
.stacks_in_1723-list a:active {
	text-decoration: none;
}

.stacks_in_1723-list a,
.stacks_in_1723-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1723-list a:hover,
.stacks_in_1723-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1723-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1723-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1723-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1723-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1723-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1723-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1723-list .list-inline-item:not(:last-child) {

}

.stacks_in_1723-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1723-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1724-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1724-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1726-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1726-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1727-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1727-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1728-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1728-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1729-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1729-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1730-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1730-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1731-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1731-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1732-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1732-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h2.stacks_in_1734-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h2.stacks_in_1734-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1734-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1734-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1734-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1734-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1734-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1734-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1734-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_1734-header {
		font-size: 1.40rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1734-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1734-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1734-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1734-header {
		font-size: 2.00rem;
	}
}


.stacks_in_1831-list {
	list-style: decimal;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1831-list {
	
	
	
}

.stacks_in_1831-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1831-list a,
.stacks_in_1831-list a:visited,
.stacks_in_1831-list a:hover,
.stacks_in_1831-list a:active {
	text-decoration: none;
}

.stacks_in_1831-list a,
.stacks_in_1831-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1831-list a:hover,
.stacks_in_1831-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












.stacks_in_1831-list .list-inline-item:not(:last-child) {

}

.stacks_in_1831-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1831-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1832-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1832-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1834-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1834-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1835-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1835-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1737-list {
	list-style: disc;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1737-list {
	
	
	
}

.stacks_in_1737-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1737-list a,
.stacks_in_1737-list a:visited,
.stacks_in_1737-list a:hover,
.stacks_in_1737-list a:active {
	text-decoration: none;
}

.stacks_in_1737-list a,
.stacks_in_1737-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1737-list a:hover,
.stacks_in_1737-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1737-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1737-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1737-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1737-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1737-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1737-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1737-list .list-inline-item:not(:last-child) {

}

.stacks_in_1737-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1737-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1738-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1738-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1740-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1740-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1741-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1741-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_1837-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_1837-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1837-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1837-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1837-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1837-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1837-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_1837-wrapper p:last-of-type {
		margin-bottom: 0;
	}








h2.stacks_in_1743-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h2.stacks_in_1743-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h2.stacks_in_1743-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h2.stacks_in_1743-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h2.stacks_in_1743-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h2.stacks_in_1743-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h2.stacks_in_1743-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h2.stacks_in_1743-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1743-header {
	font-size: 1.40rem;
}

@media (min-width: 576px) {
	.stacks_in_1743-header {
		font-size: 1.40rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1743-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1743-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1743-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1743-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1746-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}









	#stacks_in_1746-wrapper p:last-of-type {
		margin-bottom: 0;
	}




#stacks_in_1842-wrapper,
#stacks_in_1842-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1842-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1842-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1842-wrapper {
	background-position: center center;
}


#stacks_in_1842-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1842-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1842-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1842-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1842-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1842-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1842-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1842-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1842-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1842-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1842-wrapper.bkg-preset {
	background: var(--bs-gray-100);
}

#stacks_in_1842-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_1842-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_1842-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_1842-wrapper.custom-corners,
#stacks_in_1842-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1842-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1842-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1842-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_1842-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_1842-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1841-wrapper {
	
}

#stacks_in_1841-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_1841-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_1841-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_1841-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_1841-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_1844-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1844-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1844-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_1844-margins.padding-advanced {
	padding: 0.00rem 0.00rem 4.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1844-margins.padding-advanced {
		padding: 0.00rem 0.00rem 6.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1846-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1846-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1846-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_1846-margins.padding-advanced {
	padding: 4.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_1850-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 5px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1850-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1850-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1850-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1850-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1850-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1850-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1850-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1850-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_1850-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1850-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1850-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1850-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1850-header {
		font-size: 2.00rem;
	}
}






h3.stacks_in_1854-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1854-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1854-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1854-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1854-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1854-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1854-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1854-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1854-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_1854-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1854-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1854-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1854-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1854-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1857-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_1857-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1857-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1857-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1857-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1857-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1857-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_1857-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_1859-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1859-list {
	
	
	
}

.stacks_in_1859-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1859-list a,
.stacks_in_1859-list a:visited,
.stacks_in_1859-list a:hover,
.stacks_in_1859-list a:active {
	text-decoration: none;
}

.stacks_in_1859-list a,
.stacks_in_1859-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1859-list a:hover,
.stacks_in_1859-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1859-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1859-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1859-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1859-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1859-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1859-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1859-list .list-inline-item:not(:last-child) {

}

.stacks_in_1859-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1859-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1860-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1860-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1862-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1862-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1863-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1863-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_1864-wrapper {
	
	
	
}









	#stacks_in_1864-wrapper p:last-of-type {
		margin-bottom: 0;
	}








#stacks_in_1867-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1867-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1867-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_1867-margins.padding-advanced {
	padding: 2.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_1869-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1869-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1869-header {
	margin-bottom: 0;
}






.stacks_in_1869-header {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	.stacks_in_1869-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1869-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1869-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1869-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1869-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1872-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}









	#stacks_in_1872-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_1874-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1874-list {
	
	
	
}

.stacks_in_1874-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1874-list a,
.stacks_in_1874-list a:visited,
.stacks_in_1874-list a:hover,
.stacks_in_1874-list a:active {
	text-decoration: none;
}

.stacks_in_1874-list a,
.stacks_in_1874-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1874-list a:hover,
.stacks_in_1874-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1874-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1874-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1874-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1874-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1874-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1874-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1874-list .list-inline-item:not(:last-child) {

}

.stacks_in_1874-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1874-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1875-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1875-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1877-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1877-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1878-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1878-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1879-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1879-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h3.stacks_in_1881-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1881-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1881-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1881-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1881-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1881-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1881-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1881-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1881-header {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	.stacks_in_1881-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1881-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1881-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1881-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1881-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1884-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}









	#stacks_in_1884-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_1886-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1886-list {
	
	
	
}

.stacks_in_1886-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1886-list a,
.stacks_in_1886-list a:visited,
.stacks_in_1886-list a:hover,
.stacks_in_1886-list a:active {
	text-decoration: none;
}

.stacks_in_1886-list a,
.stacks_in_1886-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1886-list a:hover,
.stacks_in_1886-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1886-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1886-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1886-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1886-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1886-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1886-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1886-list .list-inline-item:not(:last-child) {

}

.stacks_in_1886-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1886-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1887-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1887-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1889-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1889-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1890-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1890-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1891-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1891-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h3.stacks_in_1893-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1893-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1893-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1893-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1893-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1893-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1893-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1893-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1893-header {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	.stacks_in_1893-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1893-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1893-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1893-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1893-header {
		font-size: 2.00rem;
	}
}


.stacks_in_1896-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1896-list {
	
	
	
}

.stacks_in_1896-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1896-list a,
.stacks_in_1896-list a:visited,
.stacks_in_1896-list a:hover,
.stacks_in_1896-list a:active {
	text-decoration: none;
}

.stacks_in_1896-list a,
.stacks_in_1896-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1896-list a:hover,
.stacks_in_1896-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1896-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1896-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1896-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1896-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1896-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1896-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1896-list .list-inline-item:not(:last-child) {

}

.stacks_in_1896-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1896-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1897-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1897-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1899-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1899-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1900-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1900-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1901-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1901-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h3.stacks_in_1903-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1903-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1903-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1903-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1903-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1903-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1903-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1903-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1903-header {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	.stacks_in_1903-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1903-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1903-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1903-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1903-header {
		font-size: 2.00rem;
	}
}


.stacks_in_1906-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1906-list {
	
	
	
}

.stacks_in_1906-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1906-list a,
.stacks_in_1906-list a:visited,
.stacks_in_1906-list a:hover,
.stacks_in_1906-list a:active {
	text-decoration: none;
}

.stacks_in_1906-list a,
.stacks_in_1906-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1906-list a:hover,
.stacks_in_1906-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1906-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1906-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1906-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1906-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1906-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1906-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1906-list .list-inline-item:not(:last-child) {

}

.stacks_in_1906-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1906-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1907-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1907-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1909-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1909-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1910-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1910-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1911-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1911-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_1912-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_1912-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1912-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1912-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1912-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1912-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1912-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_1912-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1918-wrapper {
	
	
	
}









	#stacks_in_1918-wrapper p:last-of-type {
		margin-bottom: 0;
	}




#stacks_in_1514-wrapper,
#stacks_in_1514-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1514-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1514-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1514-wrapper {
	background-position: center center;
}


#stacks_in_1514-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1514-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1514-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1514-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1514-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1514-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1514-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1514-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1514-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1514-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1514-wrapper.bkg-preset {
	background: var(--bs-gray-200);
}

#stacks_in_1514-wrapper.bkg-solid-color {
	background: rgba(127, 73, 246, 1.00);
}

#stacks_in_1514-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_1514-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_1514-wrapper.custom-corners,
#stacks_in_1514-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1514-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1514-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1514-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_1514-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_1514-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1578-wrapper {
	
}

#stacks_in_1578-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_1578-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_1578-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_1578-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_1578-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_1516-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#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: 0.00rem 0.00rem 4.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1516-margins.padding-advanced {
		padding: 0.00rem 0.00rem 6.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_699-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_699-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_699-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_699-margins.padding-advanced {
	padding: 4.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_703-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 5px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_703-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_703-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_703-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_703-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_703-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_703-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_703-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_703-header {
	font-size: 1.50rem;
}

@media (min-width: 576px) {
	.stacks_in_703-header {
		font-size: 1.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_703-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_703-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_703-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_703-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1934-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_1934-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1934-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1934-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1934-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1934-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1934-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_1934-wrapper p:last-of-type {
		margin-bottom: 0;
	}








h3.stacks_in_1289-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	margin: 0;
	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1289-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



/* Base Margins */
h3.stacks_in_1289-header {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	h3.stacks_in_1289-header {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	h3.stacks_in_1289-header {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	h3.stacks_in_1289-header {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	h3.stacks_in_1289-header {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	h3.stacks_in_1289-header {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






.stacks_in_1289-header {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	.stacks_in_1289-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1289-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1289-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1289-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1289-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1750-wrapper {
	
	
	
}




/* Base Margins */
#stacks_in_1750-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1750-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1750-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1750-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1750-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1750-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






	#stacks_in_1750-wrapper p:last-of-type {
		margin-bottom: 0;
	}







.stacks_in_1954-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1954-list {
	
	
	
}

.stacks_in_1954-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1954-list a,
.stacks_in_1954-list a:visited,
.stacks_in_1954-list a:hover,
.stacks_in_1954-list a:active {
	text-decoration: none;
}

.stacks_in_1954-list a,
.stacks_in_1954-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1954-list a:hover,
.stacks_in_1954-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












.stacks_in_1954-list .list-inline-item:not(:last-child) {

}

.stacks_in_1954-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1954-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1956-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1956-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1958-list {
	list-style: disc;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1958-list {
	
	
	
}

.stacks_in_1958-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1958-list a,
.stacks_in_1958-list a:visited,
.stacks_in_1958-list a:hover,
.stacks_in_1958-list a:active {
	text-decoration: none;
}

.stacks_in_1958-list a,
.stacks_in_1958-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1958-list a:hover,
.stacks_in_1958-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1958-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1958-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1958-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1958-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1958-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1958-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1958-list .list-inline-item:not(:last-child) {

}

.stacks_in_1958-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1958-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1959-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1959-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1961-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1961-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




.stacks_in_1964-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1964-list {
	
	
	
}

.stacks_in_1964-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1964-list a,
.stacks_in_1964-list a:visited,
.stacks_in_1964-list a:hover,
.stacks_in_1964-list a:active {
	text-decoration: none;
}

.stacks_in_1964-list a,
.stacks_in_1964-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1964-list a:hover,
.stacks_in_1964-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












.stacks_in_1964-list .list-inline-item:not(:last-child) {

}

.stacks_in_1964-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1964-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1966-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1966-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1968-list {
	list-style: disc;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1968-list {
	
	
	
}

.stacks_in_1968-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1968-list a,
.stacks_in_1968-list a:visited,
.stacks_in_1968-list a:hover,
.stacks_in_1968-list a:active {
	text-decoration: none;
}

.stacks_in_1968-list a,
.stacks_in_1968-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1968-list a:hover,
.stacks_in_1968-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1968-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1968-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1968-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1968-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1968-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1968-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1968-list .list-inline-item:not(:last-child) {

}

.stacks_in_1968-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1968-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1969-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1969-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1971-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1971-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




.stacks_in_1974-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1974-list {
	
	
	
}

.stacks_in_1974-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1974-list a,
.stacks_in_1974-list a:visited,
.stacks_in_1974-list a:hover,
.stacks_in_1974-list a:active {
	text-decoration: none;
}

.stacks_in_1974-list a,
.stacks_in_1974-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1974-list a:hover,
.stacks_in_1974-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












.stacks_in_1974-list .list-inline-item:not(:last-child) {

}

.stacks_in_1974-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1974-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1976-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1976-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1978-list {
	list-style: disc;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1978-list {
	
	
	
}

.stacks_in_1978-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1978-list a,
.stacks_in_1978-list a:visited,
.stacks_in_1978-list a:hover,
.stacks_in_1978-list a:active {
	text-decoration: none;
}

.stacks_in_1978-list a,
.stacks_in_1978-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1978-list a:hover,
.stacks_in_1978-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1978-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1978-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1978-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1978-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1978-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1978-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1978-list .list-inline-item:not(:last-child) {

}

.stacks_in_1978-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1978-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1979-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1979-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1981-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1981-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}




.stacks_in_1939-list {
	list-style: none;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1939-list {
	
	
	
}

.stacks_in_1939-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1939-list a,
.stacks_in_1939-list a:visited,
.stacks_in_1939-list a:hover,
.stacks_in_1939-list a:active {
	text-decoration: none;
}

.stacks_in_1939-list a,
.stacks_in_1939-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1939-list a:hover,
.stacks_in_1939-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}












.stacks_in_1939-list .list-inline-item:not(:last-child) {

}

.stacks_in_1939-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1939-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1940-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1940-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1292-list {
	list-style: disc;
	list-style-position: outside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1292-list {
	
	
	
}

.stacks_in_1292-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1292-list a,
.stacks_in_1292-list a:visited,
.stacks_in_1292-list a:hover,
.stacks_in_1292-list a:active {
	text-decoration: none;
}

.stacks_in_1292-list a,
.stacks_in_1292-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1292-list a:hover,
.stacks_in_1292-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1292-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1292-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1292-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1292-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1292-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1292-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1292-list .list-inline-item:not(:last-child) {

}

.stacks_in_1292-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1292-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1944-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1944-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1936-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1936-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





#stacks_in_1818-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1818-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1818-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_1818-margins.padding-advanced {
	padding: 2.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_1770-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	text-shadow: 0px 0px 6px rgba(255, 255, 255, 1.00);
	
	
	
}

h3.stacks_in_1770-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1770-header {
	margin-bottom: 0;
}






.stacks_in_1770-header {
	font-size: 1.30rem;
}

@media (min-width: 576px) {
	.stacks_in_1770-header {
		font-size: 1.30rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1770-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1770-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1770-header {
		font-size: 1.85rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1770-header {
		font-size: 1.85rem;
	}
}


.stacks_in_1775-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1775-list {
	
	
	
}

.stacks_in_1775-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1775-list a,
.stacks_in_1775-list a:visited,
.stacks_in_1775-list a:hover,
.stacks_in_1775-list a:active {
	text-decoration: none;
}

.stacks_in_1775-list a,
.stacks_in_1775-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1775-list a:hover,
.stacks_in_1775-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1775-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1775-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1775-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1775-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1775-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1775-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1775-list .list-inline-item:not(:last-child) {

}

.stacks_in_1775-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1775-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1984-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1984-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1983-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1983-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1776-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1776-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_1773-wrapper {
	
	
	
		
		
		color: var(--bs-dark);
		
	
}









	#stacks_in_1773-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_1268-wrapper {
	
	
	
}









	#stacks_in_1268-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1580-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1580-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1580-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_1580-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_1581-wrapper,
#stacks_in_1581-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1581-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1581-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1581-wrapper {
	background-position: center center;
}


#stacks_in_1581-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1581-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1581-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1581-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1581-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1581-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1581-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1581-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1581-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1581-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1581-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_1581-wrapper.bkg-solid-color {
	background: rgba(255, 255, 255, 0.00);
}

#stacks_in_1581-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_1581-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_1581-wrapper.custom-corners,
#stacks_in_1581-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1581-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 10px 10px;
}



#stacks_in_1581-wrapper > .bkg-overlay.solid {
	background: rgba(255, 255, 255, 0.83);
}


#stacks_in_1581-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_1581-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_1581-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1583-wrapper {
	
}

#stacks_in_1583-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_1583-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_1583-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_1583-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_1583-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_1585-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1585-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1585-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_1585-margins.padding-advanced {
	padding: 5.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1585-margins.padding-advanced {
		padding: 5.00rem 2.00rem 0.00rem 2.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_1585-margins.padding-advanced {
		padding: 10.00rem 5.00rem 0.00rem 5.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}
 

#stacks_in_1587-wrapper.card {
	background: transparent !important;
	overflow: visible !important;
}

#stacks_in_1587-wrapper .card-header {
	
	
	background-color: rgba(255, 255, 255, 0.00);
	
}

#stacks_in_1587-wrapper.custom-radius,
#stacks_in_1587-wrapper .card-body.custom-radius {
	border-radius: 10px 10px 10px 10px;
}

#stacks_in_1587-wrapper .card-body {
	
	border-top-right-radius: 0px !important;
	border-top-left-radius: 0px !important;
	
	
}

#stacks_in_1587-wrapper .card-body {
	
	
	background: rgba(13, 75, 161, 0.20);
	
}



#stacks_in_1587-wrapper .card-img-top.custom-radius .fdy-img,
#stacks_in_1587-wrapper .card-img-top.custom-radius .fdy-card-topper-option,
#stacks_in_1587-wrapper .custom-radius.card-header {
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#stacks_in_1587-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_1587-wrapper .card-img-top:not(.custom-radius) .fdy-img,
#stacks_in_1587-wrapper .card-img-top:not(.custom-radius) .fdy-card-topper-option,
#stacks_in_1587-wrapper .card-header:not(.custom-radius) {
	border-bottom-left-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

#stacks_in_1587-wrapper .card-footer:not(.custom-radius) {
	border-top-left-radius: 0px !important;
	border-top-right-radius: 0px !important;
}

#stacks_in_1587-wrapper .card-header h1,
#stacks_in_1587-wrapper .card-header h2,
#stacks_in_1587-wrapper .card-header h3,
#stacks_in_1587-wrapper .card-header h4,
#stacks_in_1587-wrapper .card-header h5,
#stacks_in_1587-wrapper .card-header h6,
#stacks_in_1587-wrapper .card-header p:last-of-type,
#stacks_in_1587-wrapper .card-header small,
#stacks_in_1587-wrapper .card-footer h1,
#stacks_in_1587-wrapper .card-footer h2,
#stacks_in_1587-wrapper .card-footer h3,
#stacks_in_1587-wrapper .card-footer h4,
#stacks_in_1587-wrapper .card-footer h5,
#stacks_in_1587-wrapper .card-footer h6,
#stacks_in_1587-wrapper .card-footer p:last-of-type,
#stacks_in_1587-wrapper .card-footer small {
	margin-bottom: 0 !important;
}

#stacks_in_1587-wrapper.card {
	
	border-color: var(--bs-gray-300) !important;
	
	
}

#stacks_in_1587-wrapper.card.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_1587-wrapper.card.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_1587-wrapper.card,
#stacks_in_1587-wrapper.card.custom-shadow,
#stacks_in_1587-wrapper.card.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}


#stacks_in_1587-wrapper > .card-body.custom-padding {
	padding: 2.00rem;
}

#stacks_in_1587-wrapper .card-footer {
	
}


/* Base Margins */
#stacks_in_1587-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1587-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1587-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1587-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1587-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1587-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}

 

#stacks_in_1587-wrapper img {
 	margin: 0 !important;
 }
 


#stacks_in_1594-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1594-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1594-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_1594-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_1675-wrapper,
#stacks_in_1675-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_1675-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_1675-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_1675-wrapper {
	background-position: center center;
}


#stacks_in_1675-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_1675-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_1675-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_1675-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_1675-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_1675-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_1675-wrapper.bkg-image {
	background-image: url();
}






#stacks_in_1675-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_1675-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_1675-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_1675-wrapper.bkg-preset {
	background: var(--bs-gray-400);
}

#stacks_in_1675-wrapper.bkg-solid-color {
	background: rgba(255, 237, 71, 1.00);
}

#stacks_in_1675-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_1675-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_1675-wrapper.custom-corners,
#stacks_in_1675-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_1675-wrapper.custom-corners > .filters-layer {
	border-radius: 10px 10px 0px 0px;
}



#stacks_in_1675-wrapper > .bkg-overlay.solid {
	background: rgba(0, 0, 0, 0.75);
}


#stacks_in_1675-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_1675-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_1675-wrapper {
	
	
	border-color: var(--bs-secondary) !important;
	
	
	
}








	

	








#stacks_in_1677-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1677-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1677-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_1677-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1677-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_1596.blu-svg{text-align:center}#stacks_in_1596.blu-svg svg{width:96.00px}@media screen and (min-width:640px) and (max-width:768px){#stacks_in_1596.blu-svg{text-align:center}#stacks_in_1596.blu-svg svg{width:126.00px}}@media screen and (min-width:768px) and (max-width:1000px){#stacks_in_1596.blu-svg{text-align:center}#stacks_in_1596.blu-svg svg{width:136.00px}}@media screen and (min-width:1000px){#stacks_in_1596.blu-svg{text-align:center}#stacks_in_1596.blu-svg svg{width:146.00px}}  #stacks_in_1596.blu-svg svg rectange,#stacks_in_1596.blu-svg svg circle,#stacks_in_1596.blu-svg svg ellipse,#stacks_in_1596.blu-svg svg polygon,#stacks_in_1596.blu-svg svg polyline,#stacks_in_1596.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_1596.blu-svg svg:hover rectange,#stacks_in_1596.blu-svg svg:hover circle,#stacks_in_1596.blu-svg svg:hover ellipse,#stacks_in_1596.blu-svg svg:hover polygon,#stacks_in_1596.blu-svg svg:hover polyline,#stacks_in_1596.blu-svg svg:hover path{fill:rgba(13, 75, 161, 1.00)!important} #stacks_in_1596.blu-svg{float:none}#stacks_in_1596 a,#stacks_in_1596 svg{cursor:auto}



#stacks_in_1599-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1599-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_1599-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_1599-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) {
	
}



h3.stacks_in_1600-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_1600-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1600-header {
	margin-bottom: 0;
}






.stacks_in_1600-header {
	font-size: 2.50rem;
}

@media (min-width: 576px) {
	.stacks_in_1600-header {
		font-size: 2.50rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1600-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1600-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1600-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1600-header {
		font-size: 3.00rem;
	}
}



h3.stacks_in_1603-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_1603-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1603-header {
	margin-bottom: 0;
}






.stacks_in_1603-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_1603-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1603-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1603-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1603-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1603-header {
		font-size: 2.00rem;
	}
}




/* Base Margins */
.stacks_in_1667.fdy-img {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1667.fdy-img {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1667.fdy-img {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1667.fdy-img {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1667.fdy-img {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1667.fdy-img {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_1667.fdy-img {
	
	
	

	
	border-color: var(--bs-dark) !important;
	
	
	
}


.stacks_in_1667.fdy-img.img-upscale {
	width: 100%;
	height: auto;
}
	
	
.stacks_in_1667.fdy-img.img-custom-pct {
	width: 100%;
	height: auto;
}

.stacks_in_1667.fdy-img.img-max-width {
	max-width: 100%;
	width: 600px;
	height: auto;
}




#stacks_in_1589-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1589-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1589-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_1589-margins.padding-advanced {
	padding: 0.00rem 0.00rem 0.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1589-margins.padding-advanced {
		padding: 0.00rem 5.00rem 0.00rem 5.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_1589-margins.padding-advanced {
		padding: 0.00rem 10.00rem 0.00rem 10.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_1591-wrapper {
	
	
	
		
		
		color: var(--bs-primary);
		
	
}









	#stacks_in_1591-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_1669-wrapper {
	
	
	
}

#stacks_in_1669-wrapper > p {
	margin: 0;
	padding: 0;
}

#stacks_in_1669-wrapper {
	
	
	
	color: var(--bs-gray-500);
	
}



/* Base Margins */
#stacks_in_1669-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_1669-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_1669-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_1669-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_1669-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_1669-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#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 0.00rem 2.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_1605-margins.padding-advanced {
		padding: 2.00rem 5.00rem 2.00rem 5.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_1605-margins.padding-advanced {
		padding: 2.00rem 10.00rem 5.00rem 10.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}






h3.stacks_in_1608-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_1608-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1608-header {
	margin-bottom: 0;
}






.stacks_in_1608-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_1608-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1608-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1608-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1608-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1608-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1611-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1611-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1611-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_1611-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_1612-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1612-list {
	
	
	
}

.stacks_in_1612-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1612-list a,
.stacks_in_1612-list a:visited,
.stacks_in_1612-list a:hover,
.stacks_in_1612-list a:active {
	text-decoration: none;
}

.stacks_in_1612-list a,
.stacks_in_1612-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1612-list a:hover,
.stacks_in_1612-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1612-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1612-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1612-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1612-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1612-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1612-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1612-list .list-inline-item:not(:last-child) {

}

.stacks_in_1612-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1612-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1614-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1614-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1616-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1616-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1617-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1617-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1618-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1618-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h3.stacks_in_1620-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_1620-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1620-header {
	margin-bottom: 0;
}






.stacks_in_1620-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_1620-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1620-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1620-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1620-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1620-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1623-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1623-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1623-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_1623-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_1624-wrapper {
	
	
	
}









	#stacks_in_1624-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_1627-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1627-list {
	
	
	
}

.stacks_in_1627-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1627-list a,
.stacks_in_1627-list a:visited,
.stacks_in_1627-list a:hover,
.stacks_in_1627-list a:active {
	text-decoration: none;
}

.stacks_in_1627-list a,
.stacks_in_1627-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1627-list a:hover,
.stacks_in_1627-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1627-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1627-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1627-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1627-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1627-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1627-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1627-list .list-inline-item:not(:last-child) {

}

.stacks_in_1627-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1627-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1628-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1628-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1630-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1630-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1631-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1631-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1632-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1632-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h3.stacks_in_1634-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_1634-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1634-header {
	margin-bottom: 0;
}






.stacks_in_1634-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_1634-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1634-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1634-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1634-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1634-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1637-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1637-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1637-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_1637-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_1638-wrapper {
	
	
	
}









	#stacks_in_1638-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_1641-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1641-list {
	
	
	
}

.stacks_in_1641-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1641-list a,
.stacks_in_1641-list a:visited,
.stacks_in_1641-list a:hover,
.stacks_in_1641-list a:active {
	text-decoration: none;
}

.stacks_in_1641-list a,
.stacks_in_1641-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1641-list a:hover,
.stacks_in_1641-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1641-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1641-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1641-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1641-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1641-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1641-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1641-list .list-inline-item:not(:last-child) {

}

.stacks_in_1641-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1641-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1642-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1642-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1644-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1644-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1645-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1645-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1646-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1646-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1647-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1647-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1648-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1648-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}





h3.stacks_in_1650-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_1650-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h3.stacks_in_1650-header {
	margin-bottom: 0;
}






.stacks_in_1650-header {
	font-size: 1.75rem;
}

@media (min-width: 576px) {
	.stacks_in_1650-header {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_1650-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_1650-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_1650-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_1650-header {
		font-size: 2.00rem;
	}
}



#stacks_in_1653-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1653-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1653-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_1653-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_1654-wrapper {
	
	
	
}









	#stacks_in_1654-wrapper p:last-of-type {
		margin-bottom: 0;
	}




.stacks_in_1657-list {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0;
	
	font-weight: 400;
}

.stacks_in_1657-list {
	
	
	
}

.stacks_in_1657-list .list-icon {
	
	color: var(--bs-gray-500) !important;
	
	
	
}

.stacks_in_1657-list a,
.stacks_in_1657-list a:visited,
.stacks_in_1657-list a:hover,
.stacks_in_1657-list a:active {
	text-decoration: none;
}

.stacks_in_1657-list a,
.stacks_in_1657-list a:visited {
	
	
	
	text-decoration: none;
}

.stacks_in_1657-list a:hover,
.stacks_in_1657-list a:active {
	
	opacity: 50%;
	
	
		
	text-decoration: none;
}








/* Base Margins */

.stacks_in_1657-list {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_1657-list {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_1657-list {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_1657-list {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_1657-list {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_1657-list {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}





.stacks_in_1657-list .list-inline-item:not(:last-child) {

}

.stacks_in_1657-list .list-inline-item {
	float: unset !important;
	display: inline-block !important;
}

.stacks_in_1657-list.list-inline {
	float: unset !important;
	display: block !important;
}

.stacks_in_1658-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1658-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1660-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1660-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1661-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1661-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}

.stacks_in_1662-list-item .badge {
	position: relative;
	top: -2px;
	color: rgba(255, 255, 255, 1.00);
	
	
	background-color: var(--bs-danger);
	
	
	
}

.stacks_in_1662-list-item.custom-icon-color .list-icon {
	color: rgba(148, 104, 247, 1.00) !important;
}


#stacks_in_1663-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_1663-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_1663-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_1663-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_1664-wrapper {
	
	
	
}









	#stacks_in_1664-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_751_2-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_751_2-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_751_2-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_751_2-margins.padding-advanced {
	padding: 1.00rem 0.00rem 1.00rem 0.00rem;
}

@media (min-width: 576px) {
	
}

@media (min-width: 768px) {
	
	#stacks_in_751_2-margins.padding-advanced {
		padding: 2.00rem 0.00rem 2.00rem 0.00rem;
	}
	
}

@media (min-width: 992px) {
	
}

@media (min-width: 1200px) {
	
	#stacks_in_751_2-margins.padding-advanced {
		padding: 3.00rem 0.00rem 3.00rem 0.00rem;
	}
	
}

@media (min-width: 1400px) {
	
}



#stacks_in_751_3-wrapper {
	
	
	border-color: rgba(239, 239, 239, 1.00) !important;
	
	border-width: 1px !important;
	border-bottom-width: 0px !important;
	border-style: solid !important;	
}

#stacks_in_751_3-wrapper .border-badge {
	
	background-color: var(--bs-white) !important;
	
	
	color: rgba(137, 166, 208, 1.00);
}

#stacks_in_751_3-wrapper .border-badge {
	
}

#stacks_in_751_3-wrapper.custom-width {
	width: 80%;
}


h4.stacks_in_751_5-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-primary);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h4.stacks_in_751_5-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h4.stacks_in_751_5-header {
	margin-bottom: 0;
}



a.hdr-link-stacks_in_751_5,
a.hdr-link-stacks_in_751_5:visited,
a.hdr-link-stacks_in_751_5:active,
a.hdr-link-stacks_in_751_5:hover {
	
	text-decoration: none !important;
	
	outline: none;
}




.stacks_in_751_5-header {
	font-size: 2.00rem;
}

@media (min-width: 576px) {
	.stacks_in_751_5-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 768px) {
	.stacks_in_751_5-header {
		font-size: 2.00rem;
	}
}

@media (min-width: 992px) {
	.stacks_in_751_5-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1200px) {
	.stacks_in_751_5-header {
		font-size: 3.00rem;
	}
}

@media (min-width: 1400px) {
	.stacks_in_751_5-header {
		font-size: 3.00rem;
	}
}


#stacks_in_752_2-wrapper,
#stacks_in_752_2-wrapper > .bkg-overlay {
	overflow: visible;
	z-index: 15;
	position: relative;
}

#stacks_in_752_2-wrapper > .filters-layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	
	
	
	
}

#stacks_in_752_2-wrapper > .bkg-overlay {
	z-index: 10;
}

#stacks_in_752_2-wrapper {
	background-position: center center;
}


#stacks_in_752_2-wrapper.cover {
	background-size: cover;
	background-repeat: no-repeat;
}

#stacks_in_752_2-wrapper.contain {
	background-size: contain;
	background-repeat: no-repeat;
}

#stacks_in_752_2-wrapper.parallax {
	background-repeat: no-repeat;	
}

#stacks_in_752_2-wrapper .jarallax {
	position: relative;
	z-index: 0;
}
#stacks_in_752_2-wrapper .jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}



#stacks_in_752_2-wrapper.tile {
	background-repeat: repeat;
}

#stacks_in_752_2-wrapper.bkg-image {
	background-image: url(../files/drag-and-drop-img-2-C67.png);
}






#stacks_in_752_2-wrapper.bkg-remote-image {
	background-image: url();
}



	

#stacks_in_752_2-wrapper.bkg-webp-image {
	background-image: url();
}



body.webp-not-supported #stacks_in_752_2-wrapper.bkg-webp-image {
	background-image: url() !important;
}



	
	

#stacks_in_752_2-wrapper.bkg-preset {
	background: var(--bs-primary);
}

#stacks_in_752_2-wrapper.bkg-solid-color {
	background: rgba(28, 138, 255, 1.00);
}

#stacks_in_752_2-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_752_2-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_752_2-wrapper.custom-corners,
#stacks_in_752_2-wrapper.custom-corners > .bkg-overlay.custom-corners,
#stacks_in_752_2-wrapper.custom-corners > .filters-layer {
	border-radius: 0px 100px 0px 100px;
}



#stacks_in_752_2-wrapper > .bkg-overlay.solid {
	background: rgba(13, 75, 161, 0.95);
}


#stacks_in_752_2-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_752_2-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_752_2-wrapper {
	
	
	border-color: var(--bs-success) !important;
	
	
	
}








	

	








#stacks_in_752_3-wrapper {
	
	max-width: 1200px;
	
}

#stacks_in_752_3-wrapper .container-fluid.fdy-columns {
	padding-left: 0px;
	padding-right: 0px;
}


/* Advanced Mode */
#stacks_in_752_3-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_752_3-wrapper.fdy-container {
	max-width: 540px;
  }
}



@media (min-width: 768px) {
  #stacks_in_752_3-wrapper.fdy-container {
	max-width: 720px;
  }
}



@media (min-width: 992px) {
  #stacks_in_752_3-wrapper.fdy-container {
	max-width: 960px;
  }
}








#stacks_in_752_5-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_752_5-margins.padding-easy-presets {
	/* Padding Settings */
	
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_752_5-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_752_5-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_752_7-wrapper .col {
		
	}
	
}





#stacks_in_752_11-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_752_11-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_752_11-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_752_11-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_752_128-svg svg {
	
	display: inline-block;
	
	
	
	
	
}

#stacks_in_752_128-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_752_128-svg svg {
	width: 100%;	
	max-width: 80px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_752_128-svg svg {
		width: 100%;	
		max-width: 80px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_128-svg svg {
		width: 100%;	
		max-width: 95px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_128-svg svg {
		width: 100%;	
		max-width: 95px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_128-svg svg {
		width: 100%;	
		max-width: 95px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_128-svg svg {
		width: 100%;	
		max-width: 95px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_752_128-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_128-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_128-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_128-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_128-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_128-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}











#stacks_in_752_22-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}







#stacks_in_752_22-wrapper {
	font-size: 1.20rem;
}

@media (min-width: 576px) {
	#stacks_in_752_22-wrapper {
		font-size: 1.20rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_22-wrapper {
		font-size: 1.60rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_22-wrapper {
		font-size: 2.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_22-wrapper {
		font-size: 2.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_22-wrapper {
		font-size: 2.00rem;
	}
}



	#stacks_in_752_22-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_752_24-wrapper {
	
	
	
		
		
		color: var(--bs-success);
		
	
}







#stacks_in_752_24-wrapper {
	font-size: 0.70rem;
}

@media (min-width: 576px) {
	#stacks_in_752_24-wrapper {
		font-size: 0.70rem;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_24-wrapper {
		font-size: 0.90rem;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_24-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_24-wrapper {
		font-size: 1.00rem;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_24-wrapper {
		font-size: 1.00rem;
	}
}



	#stacks_in_752_24-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_752_27-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_752_27-margins.padding-easy-presets {
	/* Padding Settings */
	
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_752_27-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_752_27-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_752_29-icon-badges {
	display: grid;
	gap: 5px;
	grid-template-columns: repeat(auto-fit, minmax(32px, 32px));
}

#stacks_in_752_29-icon-badges .icon-item {
	height: 32px;
	line-height: 32px;
	position: relative;
}

#stacks_in_752_29-icon-badges .icon-item i {
	line-height: 32px;
	font-size: 1.25rem;
}




#stacks_in_752_29-icon-badges .icon-item {
	justify-content: center;

	
	color: var(--bs-white);
	
	
	

	text-align: center;
	position: relative;
}

#stacks_in_752_29-icon-badges .icon-item i {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
}

#stacks_in_752_29-icon-badges .icon-item a,
#stacks_in_752_29-icon-badges .icon-item a:visited {
	
	color: var(--bs-white);
	
	
	
	text-decoration: none;
}























.stacks_in_752_31-item {
	
	
	transition-duration: 250ms;
	transition-property: background, color, box-shadow;
	
	
	background: var(--bs-gray-500);
	
	
	
	
	
}

.stacks_in_752_31-item:hover {
	

		
		background: var(--bs-gray-400);
		
		
		

	
	
	

}



.stacks_in_752_31-item.icon-item,
.stacks_in_752_31-item.icon-item a,
.stacks_in_752_31-item.icon-item a:visited,
.stacks_in_752_31-item.icon-item i {
	
}

.stacks_in_752_31-item.icon-item:hover,
.stacks_in_752_31-item.icon-item a:hover,
.stacks_in_752_31-item.icon-item a:active,
.stacks_in_752_31-item.icon-item:hover i {
	
		
		
		
		color: rgba(255, 0, 12, 1.00);
		
	
}

.stacks_in_752_32-item {
	
	
	transition-duration: 250ms;
	transition-property: background, color, box-shadow;
	
	
	background: var(--bs-gray-500);
	
	
	
	
	
}

.stacks_in_752_32-item:hover {
	

		
		background: var(--bs-gray-400);
		
		
		

	
	
	

}



.stacks_in_752_32-item.icon-item,
.stacks_in_752_32-item.icon-item a,
.stacks_in_752_32-item.icon-item a:visited,
.stacks_in_752_32-item.icon-item i {
	
}

.stacks_in_752_32-item.icon-item:hover,
.stacks_in_752_32-item.icon-item a:hover,
.stacks_in_752_32-item.icon-item a:active,
.stacks_in_752_32-item.icon-item:hover i {
	
		
		
		
		color: rgba(0, 151, 255, 1.00);
		
	
}

.stacks_in_752_33-item {
	
	
	transition-duration: 250ms;
	transition-property: background, color, box-shadow;
	
	
	background: var(--bs-gray-500);
	
	
	
	
	
}

.stacks_in_752_33-item:hover {
	

		
		background: var(--bs-gray-400);
		
		
		

	
	
	

}



.stacks_in_752_33-item.icon-item,
.stacks_in_752_33-item.icon-item a,
.stacks_in_752_33-item.icon-item a:visited,
.stacks_in_752_33-item.icon-item i {
	
}

.stacks_in_752_33-item.icon-item:hover,
.stacks_in_752_33-item.icon-item a:hover,
.stacks_in_752_33-item.icon-item a:active,
.stacks_in_752_33-item.icon-item:hover i {
	
		
		
		
		color: rgba(106, 0, 254, 1.00);
		
	
}

.stacks_in_752_34-item {
	
	
	transition-duration: 250ms;
	transition-property: background, color, box-shadow;
	
	
	background: var(--bs-gray-500);
	
	
	
	
	
}

.stacks_in_752_34-item:hover {
	

		
		background: var(--bs-gray-400);
		
		
		

	
	
	

}



.stacks_in_752_34-item.icon-item,
.stacks_in_752_34-item.icon-item a,
.stacks_in_752_34-item.icon-item a:visited,
.stacks_in_752_34-item.icon-item i {
	
}

.stacks_in_752_34-item.icon-item:hover,
.stacks_in_752_34-item.icon-item a:hover,
.stacks_in_752_34-item.icon-item a:active,
.stacks_in_752_34-item.icon-item:hover i {
	
		
		
		
		color: rgba(53, 104, 14, 1.00);
		
	
}

.stacks_in_752_35-item {
	
	
	transition-duration: 250ms;
	transition-property: background, color, box-shadow;
	
	
	background: var(--bs-gray-500);
	
	
	
	
	
}

.stacks_in_752_35-item:hover {
	

		
		background: var(--bs-gray-400);
		
		
		

	
	
	

}



.stacks_in_752_35-item.icon-item,
.stacks_in_752_35-item.icon-item a,
.stacks_in_752_35-item.icon-item a:visited,
.stacks_in_752_35-item.icon-item i {
	
}

.stacks_in_752_35-item.icon-item:hover,
.stacks_in_752_35-item.icon-item a:hover,
.stacks_in_752_35-item.icon-item a:active,
.stacks_in_752_35-item.icon-item:hover i {
	
		
		
		
		color: rgba(20, 75, 161, 1.00);
		
	
}

.stacks_in_752_36-item {
	
	
	transition-duration: 250ms;
	transition-property: background, color, box-shadow;
	
	
	background: var(--bs-gray-500);
	
	
	
	
	
}

.stacks_in_752_36-item:hover {
	

		
		background: var(--bs-gray-400);
		
		
		

	
	
	

}



.stacks_in_752_36-item.icon-item,
.stacks_in_752_36-item.icon-item a,
.stacks_in_752_36-item.icon-item a:visited,
.stacks_in_752_36-item.icon-item i {
	
}

.stacks_in_752_36-item.icon-item:hover,
.stacks_in_752_36-item.icon-item a:hover,
.stacks_in_752_36-item.icon-item a:active,
.stacks_in_752_36-item.icon-item:hover i {
	
		
		
		
		color: rgba(247, 0, 10, 1.00);
		
	
}






h5.stacks_in_752_41-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h5.stacks_in_752_41-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h5.stacks_in_752_41-header {
	margin-bottom: 0;
}









#stacks_in_752_44-wrapper {
	font-weight: 400;
}

/* Add a little space after numbers for numbered items */
#stacks_in_752_44-wrapper.list-group-numbered > li::before {
	margin-right: 5px;
}


/* Base Margins */
#stacks_in_752_44-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_44-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_44-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_44-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_44-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_44-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_in_752_44-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_752_44-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(255, 255, 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_752_44-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_752_44-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_752_44-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_752_44-wrapper .list-group-item {
	color: rgba(255, 255, 255, 1.00);
	
	background-color: transparent;
	
	

	
	
	border-color: rgba(225, 230, 225, 0.00);
	
}

#stacks_in_752_44-wrapper .list-group-item:hover,
#stacks_in_752_44-wrapper .list-group-item.active {
	color: rgba(192, 195, 195, 1.00) !important;
	
	
	background-color: rgba(222, 226, 230, 0.00) !important;
	
} 

#stacks_in_752_44-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_752_44-wrapper .accordion-collapse .list-group-item {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-100);
	
	
	
}

#stacks_in_752_44-wrapper .accordion-collapse .item-inner-wrapper {
	
	padding-left: 12px;
	
}


#stacks_in_752_44-wrapper.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_752_44-wrapper.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_752_44-wrapper,
#stacks_in_752_44-wrapper.custom-shadow,
#stacks_in_752_44-wrapper.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}



.stacks_in_752_46-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_752_46-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_752_46-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_752_46-fdy-item .list-group-icons {
		
}

.stacks_in_752_46-fdy-item:hover .list-group-icons {
		
}


.stacks_in_752_47-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_752_47-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_752_47-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_752_47-fdy-item .list-group-icons {
		
}

.stacks_in_752_47-fdy-item:hover .list-group-icons {
		
}


.stacks_in_752_48-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_752_48-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_752_48-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_752_48-fdy-item .list-group-icons {
		
}

.stacks_in_752_48-fdy-item:hover .list-group-icons {
		
}







h5.stacks_in_752_53-header {
	
	font-weight: 700;
	
	
	
	
	
	
	
	
	color: var(--bs-white);
	
	
	

	
	letter-spacing: 0.00px;
	
	
	
}

h5.stacks_in_752_53-header > small {
	
	font-weight: 700;
	
	
	
	
	
	
	
	color: ;
	
	
	

}



h5.stacks_in_752_53-header {
	margin-bottom: 0;
}









#stacks_in_752_56-wrapper {
	font-weight: 400;
}

/* Add a little space after numbers for numbered items */
#stacks_in_752_56-wrapper.list-group-numbered > li::before {
	margin-right: 5px;
}


/* Base Margins */
#stacks_in_752_56-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_56-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_56-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_56-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_56-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_56-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}


#stacks_in_752_56-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_752_56-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(255, 255, 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_752_56-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_752_56-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_752_56-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_752_56-wrapper .list-group-item {
	color: rgba(255, 255, 255, 1.00);
	
	background-color: transparent;
	
	

	
	
	border-color: rgba(225, 230, 225, 0.00);
	
}

#stacks_in_752_56-wrapper .list-group-item:hover,
#stacks_in_752_56-wrapper .list-group-item.active {
	color: rgba(192, 195, 195, 1.00) !important;
	
	
	background-color: rgba(222, 226, 230, 0.00) !important;
	
} 

#stacks_in_752_56-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_752_56-wrapper .accordion-collapse .list-group-item {
	color: rgba(46, 49, 53, 1.00);
	
	background-color: var(--bs-gray-100);
	
	
	
}

#stacks_in_752_56-wrapper .accordion-collapse .item-inner-wrapper {
	
	padding-left: 12px;
	
}


#stacks_in_752_56-wrapper.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_752_56-wrapper.custom-shadow-hover:hover {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33) !important;
}


#stacks_in_752_56-wrapper,
#stacks_in_752_56-wrapper.custom-shadow,
#stacks_in_752_56-wrapper.custom-shadow-hover:hover {
	transition-duration: 250ms;
	transition-property: box-shadow;
}



.stacks_in_752_58-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_752_58-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_752_58-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_752_58-fdy-item .list-group-icons {
		
}

.stacks_in_752_58-fdy-item:hover .list-group-icons {
		
}


.stacks_in_752_59-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_752_59-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_752_59-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_752_59-fdy-item .list-group-icons {
		
}

.stacks_in_752_59-fdy-item:hover .list-group-icons {
		
}


.stacks_in_752_60-fdy-item .item-label {
	font-weight: 400;
}

.stacks_in_752_60-fdy-item > .badge {
	
	background: var(--bs-primary);
	
	
	color: #FFFFFF;
}

.stacks_in_752_60-fdy-item .badge.bs-gray {
	background: var(--bs-gray-);
	color: ;
}

.stacks_in_752_60-fdy-item .list-group-icons {
		
}

.stacks_in_752_60-fdy-item:hover .list-group-icons {
		
}








.stacks_in_752_67-form label {
	
	color: var(--bs-dark);
	
	
}

.stacks_in_752_67-form input::placeholder,
.stacks_in_752_67-form textarea::placeholder {
	
	color: var(--bs-gray-500);
	
	
}

.stacks_in_752_67-form input,
.stacks_in_752_67-form textarea,
.stacks_in_752_67-form select,
.stacks_in_752_67-form .input-group-text {
	
	border-color: var(--bs-gray-500);
	
	
}

.stacks_in_752_67-form input:not([type=checkbox]):not([type=radio]),
.stacks_in_752_67-form textarea,
.stacks_in_752_67-form select {	
	
	background-color: var(--bs-white) !important;
	
	

	
	color: var(--bs-dark) !important;
	
	
}

.stacks_in_752_67-form input:focus,
.stacks_in_752_67-form textarea:focus,
.stacks_in_752_67-form select:focus {
	
	
	border-color: rgba(134, 183, 254, 1.00);
	

	
	
	box-shadow: 0 0 0 0.25rem rgba(206, 220, 255, 1.00);
	
}

.stacks_in_752_67-form input[type=checkbox]:checked,
.stacks_in_752_67-form input[type=radio]:checked {
	
	
	background-color: rgba(134, 183, 254, 1.00);
	border-color: rgba(134, 183, 254, 1.00);
	
}

.stacks_in_752_67-form input:not([type=checkbox]):not([type=radio]):focus,
.stacks_in_752_67-form textarea:focus,
.stacks_in_752_67-form select:focus {	
	
	background-color: var(--bs-white) !important;
	
	

	
	color:  !important;
	
	
}

.stacks_in_752_67-form .input-group-text {
	
	background-color: var(--bs-gray-100);
	
	

	
	color: var(--bs-gray-500);
	
	
}

.stacks_in_752_67-form .field-note {
	
	color: var(--bs-gray-500);
	
		
}

.stacks_in_752_67-form {
	font-weight: 400;
}

.stacks_in_752_67-form label,
.stacks_in_752_67-form select {
	font-weight: 400;
}




.stacks_in_752_67-form .honeycomb {
	display: none !important;
}

.stacks_in_752_67-form .required-indicator {
	font-size: 12px;
	vertical-align: super;
	line-height: 0 !important;
	
	color: var(--bs-danger);
	
	
}


.stacks_in_752_67-animated-success {
	animation-name: fdy-fadeIn;
	animation-duration: 1s;
	animation-fill-mode: both;
}

@media (max-width: 575px) {	
	.stacks_in_752_67-form .stacks_in_752_67-submit-button {
		
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.stacks_in_752_67-form .stacks_in_752_67-submit-button {
		
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.stacks_in_752_67-form .stacks_in_752_67-submit-button {
		
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.stacks_in_752_67-form .stacks_in_752_67-submit-button {
		
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.stacks_in_752_67-form .stacks_in_752_67-submit-button {
		
	}
}

@media (min-width: 1400px) {
	.stacks_in_752_67-form .stacks_in_752_67-submit-button {
		
	}
}

.stacks_in_752_67-form .stacks_in_752_67-submit-button {
	
}



/* Base Margins */
.stacks_in_752_67-form {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	.stacks_in_752_67-form {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	.stacks_in_752_67-form {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	.stacks_in_752_67-form {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	.stacks_in_752_67-form {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	.stacks_in_752_67-form {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}






button.stacks_in_752_67-submit-button,
button.stacks_in_752_67-submit-button:focus,
button.stacks_in_752_67-submit-button:active {
	
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
	color: rgba(255, 255, 255, 1.00);
	
	
	
	outline: none;
	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, opacity 0.15s ease-in-out;
}

button.stacks_in_752_67-submit-button:hover,
button.stacks_in_752_67-submit-button:hover:active {
	
	background-color: var(--bs-primary) !important;
	border-color: var(--bs-primary) !important;
	color: rgba(255, 255, 255, 1.00) !important;
	
	
	

	opacity: 0.850000;	
}

#stacks_in_752_67-submit-btn .btn.disabled,
#stacks_in_752_67-submit-btn .btn:disabled,
#stacks_in_752_67-submit-btn fieldset:disabled .btn {
	
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
	color: rgba(255, 255, 255, 1.00);
	
	
	
	outline: none;
	
	opacity: 0.5;
}











button.stacks_in_752_67-submit-button {
	
}


.stacks_in_752_67-success {
	
	
	background-color: rgba(209, 231, 221, 1.00);
	
	
	
	color: var(--bs-success);
	
	

	
	
	border: 1px solid rgba(186, 219, 204, 1.00);
	
	
}




.stacks_in_752_67-dl-link {
	
	background-color: var(--bs-success);
	border-color: var(--bs-success);
	color: rgba(255, 255, 255, 1.00);
	
	
	
	
	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, opacity 0.15s ease-in-out;
}

.stacks_in_752_67-dl-link:hover {
	
	background-color: var(--bs-success);
	border-color: var(--bs-success);
	color: rgba(255, 255, 255, 1.00);
	
	
	

	opacity: 0.850000;	
}











.stacks_in_752_67-dl-link {
	
}






#stacks_in_752_67-submit-btn .badge {
	background-color: var(--bs-danger);
	color: rgba(255, 255, 255, 1.00);
}
.stacks_in_752_73-field-wrapper .make-resizable {
	
	resize: none;
	
}




#stacks_in_752_76-wrapper .badge {
	
	font-weight: 700;
	
}

#stacks_in_752_76-wrapper .badge.custom-shadow {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.33);
}

#stacks_in_752_76-wrapper .badge {
	
	background: var(--bs-secondary);
	
	
	

	
	
	color: rgba(255, 255, 255, 1.00);
}


/* Base Margins */
#stacks_in_752_76-wrapper {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_76-wrapper {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_76-wrapper {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_76-wrapper {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_76-wrapper {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_76-wrapper {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



.stacks_in_752_77-container {
	
	
	

	
	
	
	display: grid;
    grid-auto-flow: column;
		
		
			
			align-content: start;
			
			justify-content: center;
		
	

}








#stacks_in_752_122-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_752_122-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_752_122-svg svg {
	width: 100%;	
	max-width: 20px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_752_122-svg svg {
		width: 100%;	
		max-width: 20px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_122-svg svg {
		width: 100%;	
		max-width: 25px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_122-svg svg {
		width: 100%;	
		max-width: 25px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_122-svg svg {
		width: 100%;	
		max-width: 25px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_122-svg svg {
		width: 100%;	
		max-width: 25px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_752_122-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_122-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_122-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_122-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_122-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_122-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_752_126-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_752_126-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_752_126-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_752_126-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_126-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_126-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_126-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_126-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_752_126-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_126-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_126-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_126-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_126-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_126-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_752_120-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_752_120-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_752_120-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_752_120-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_120-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_120-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_120-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_120-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_752_120-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_120-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_120-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_120-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_120-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_120-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_752_118-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_752_118-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_752_118-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_752_118-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_118-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_118-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_118-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_118-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_752_118-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_118-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_118-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_118-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_118-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_118-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_752_124-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_752_124-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_752_124-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_752_124-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_124-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_124-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_124-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_124-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_752_124-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_124-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_124-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_124-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_124-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_124-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_752_116-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_752_116-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_752_116-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_752_116-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_116-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_116-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_116-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_116-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_752_116-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_116-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_116-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_116-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_116-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_116-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_752_114-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_752_114-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_752_114-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_752_114-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_114-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_114-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_114-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_114-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_752_114-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_114-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_114-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_114-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_114-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_114-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}



#stacks_in_752_112-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_752_112-svg a {
	
	
	

	
	
	outline: none;
}



#stacks_in_752_112-svg svg {
	width: 100%;	
	max-width: 30px;
	height: auto;
}

@media (min-width: 576px) {
	#stacks_in_752_112-svg svg {
		width: 100%;	
		max-width: 30px;
		height: auto;
	}
}

@media (min-width: 768px) {
	#stacks_in_752_112-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 992px) {
	#stacks_in_752_112-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_112-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_112-svg svg {
		width: 100%;	
		max-width: 35px;
		height: auto;
	}
}





/* Base Margins */
#stacks_in_752_112-svg {
	margin-bottom: var(--fdy-base-margin-xs);
}

@media (min-width: 576px) {
	#stacks_in_752_112-svg {
		margin-bottom: var(--fdy-base-margin-sm);
	}
}

@media (min-width: 768px) {
	#stacks_in_752_112-svg {
		margin-bottom: var(--fdy-base-margin-md);
	}
}

@media (min-width: 992px) {
	#stacks_in_752_112-svg {
		margin-bottom: var(--fdy-base-margin-lg);
	}
}

@media (min-width: 1200px) {
	#stacks_in_752_112-svg {
		margin-bottom: var(--fdy-base-margin-xl);
	}
}

@media (min-width: 1400px) {
	#stacks_in_752_112-svg {
		margin-bottom: var(--fdy-base-margin-xxl);
	}
}




#stacks_in_752_93-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_752_93-margins.padding-easy-presets {
	/* Padding Settings */
	
	
	
	
}


#stacks_in_752_93-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_752_93-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_752_95-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_752_95-wrapper .border-badge {
	
	background-color: var(--bs-white) !important;
	
	
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_752_95-wrapper .border-badge {
	
}

#stacks_in_752_95-wrapper.custom-width {
	width: 80%;
}





@media (max-width: 575px) {
	
	#stacks_in_752_96-wrapper .col {
		
  		flex: 0 0 auto;
  		width: 100%;
	  
	}
	
}





#stacks_in_752_100-wrapper {
	
	
	
		
		color: rgba(255, 255, 255, 1.00);
		
		
	
}


#stacks_in_752_100-wrapper {
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_752_100-wrapper a,
#stacks_in_752_100-wrapper a:visited {
	color: rgba(255, 255, 255, 1.00);
}

#stacks_in_752_100-wrapper a:hover,
#stacks_in_752_100-wrapper a:active {
	color: rgba(240, 233, 19, 1.00);
}








	#stacks_in_752_100-wrapper p:last-of-type {
		margin-bottom: 0;
	}







#stacks_in_752_104-margins.margins-easy-presets {
	/* Margin Settings */
	
	
	
	
}

#stacks_in_752_104-margins.padding-easy-presets {
	/* Padding Settings */
	padding-top: 0px !important;
	
	padding-left: 0px !important;
	padding-right: 0px !important;
}


#stacks_in_752_104-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_752_104-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_752_106-container {
	
	
	

	
	
	
	display: grid;
    grid-auto-flow: column;
		
		
			
			align-content: ;
			
			justify-content: center;
		
	

}









#stacks_in_752_108-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_752_108-wrapper p:last-of-type {
		margin-bottom: 0;
	}





#stacks_in_752_110-wrapper {
	
	
	
		
		
		color: var(--bs-white);
		
	
}









	#stacks_in_752_110-wrapper p:last-of-type {
		margin-bottom: 0;
	}


